aboutsummaryrefslogtreecommitdiff
path: root/build/configure
blob: 0109cb2a7418f63a25ad635de7b9366f259eaa9b (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
#! /usr/bin/env bash

# file      : build/configure
# 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