source: roaraudio/build-system/configure.vars @ 5808:03a414d5afc4

Last change on this file since 5808:03a414d5afc4 was 5808:03a414d5afc4, checked in by phi, 11 years ago

added function error_missing()

File size: 1.7 KB
Line 
1#!/bin/false
2# vim:ft=sh
3
4#     Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2012
5#
6# This file is part of roard a part of RoarAudio,
7# a cross-platform sound system for both, home and professional use.
8# See README for details.
9#
10# This file is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License version 3
12# as published by the Free Software Foundation.
13#
14# RoarAudio is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this software; see the file COPYING.  If not, write to
21# the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22# Boston, MA 02110-1301, USA.
23
24# wine prints errors to stdout so stderr redirects do not work.
25# To avoid common problems with wine and $LANG/$LC_* we just reset them.
26
27LANG=C
28LC_CTYPE=C
29LC_NUMERIC=C
30LC_TIME=C
31LC_COLLATE=C
32LC_MONETARY=C
33
34DISTRIBUTION_VERSION_STRING=''
35
36
37TF_C=testit.c
38TF_E=./testit
39LDPATH=''
40INCPATH=''
41
42OPTI_O=2
43
44CROSS_COMPILE=false
45
46SYSNAME='unknown'
47SHARED='-shared'
48SHARED_CF=''
49SHARED_SUFFIX='.so'
50fPIC=true
51Wextra=false
52rdynamic=true
53MMCU=''
54LINK_DEPS=auto
55PKG_CONFIG=false
56
57NEED_GNU_SOURCE=false
58
59PREFIX='/usr/local'
60PREFIX_BIN=''
61PREFIX_LIB=''
62PREFIX_INC=''
63PREFIX_MAN=''
64PREFIX_PC=''
65PREFIX_CKPORT=''
66
67ROOT_UID=''
68
69HAVE_MAIN_ARGS=true
70
71MINIMAL=false
72BETA=true
73EXPERIMENTAL=true
74
75TARGET_WIN32=false
76TARGET_MICROCONTROLLER=false
77TARGET_CYGWIN=false
78
79EXEC_HELPER=''
80
81# other stuff we need to reset:
82infotext=''
83last_tested_object=''
84
85CCTF="false"
86_CARGS="$@";
87
88#ll
Note: See TracBrowser for help on using the repository browser.