aboutsummaryrefslogtreecommitdiff
path: root/build/configure
blob: 611d148ea429b63767a0a6a79aa6a3c006fbf85b (plain)
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
#! /usr/bin/env bash

# file      : build/configure
# copyright : Copyright (c) 2005-2015 Code Synthesis Tools CC
# license   : GNU GPL v2; see accompanying LICENSE file

# $1  out file
#
# bld_root     - build root
# project_name - project name
#

source $bld_root/dialog.bash

$echo
$echo "Please select the threading implementation:"
$echo
$echo "(1) POSIX"
$echo "(2) Win32"
$echo "(3) None"
$echo

threads=`read_option "posix win32 none" "posix"`

echo "libodb_threads := $threads" >$1