File: configure

package info (click to toggle)
ecl 24.5.10%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,812 kB
  • sloc: ansic: 190,405; lisp: 68,972; xml: 8,221; asm: 5,551; sh: 3,384; makefile: 1,992; cpp: 190; java: 116
file content (39 lines) | stat: -rwxr-xr-x 1,040 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/sh
#
# This is just a driver for configure, the real configure is in src.
# This script identifies the machine, and creates a directory for
# the installation, where it runs ${srcdir}/configure.
set -e

#if uname -a | grep -i 'mingw32' > /dev/null; then
#  srcdir=`pwd -W`/src;
#else
#  srcdir=`pwd`/src
#fi
srcdir="`pwd`/src"
[ "x$buildir" = "x" ] && buildir=build
export buildir

if [ ! -d ${buildir} ] ; then
   echo Creating directory "\`${buildir}'"
   mkdir ${buildir}
fi

echo Switching to directory "\`${buildir}'" to continue configuration.

#
# There are two ways to configure ECL. If we use our own version of GMP,
# we let it configure itself and later on retrieve the appropiate flags
#
if ( echo $* | grep guess-host-cflags ); then
  echo ****
  echo **** The flag --enable-guest-host-cflags has been removed. Instead try
  echo ****   $* --enable-slow-conf
  echo ****
  exit 1
fi

cd ${buildir}
"${srcdir}/configure" --srcdir="${srcdir}" $*

echo Configuration complete. To build ECL, issue 'make' in this directory.