source: roaraudio/build-system/configure.vars

tip
Last change on this file was 5885:e1f3bdc847fa, checked in by phi, 11 years ago

added support to install plugins

File size: 2.1 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
36DEV_VENDOR=''
37DEV_VENDOR_NAME=''
38DEV_VENDOR_STRING=''
39STD_VENDOR=''
40STD_VENDOR_NAME=''
41STD_VENDOR_STRING=''
42
43TF_C=testit.c
44TF_E=./testit
45LDPATH=''
46INCPATH=''
47
48OPTI_O=2
49DEBUG_g='-g'
50
51CROSS_COMPILE=false
52
53SYSNAME='unknown'
54SHARED='-shared'
55SHARED_CF=''
56SHARED_SUFFIX='.so'
57fPIC=true
58Wextra=false
59rdynamic=true
60MMCU=''
61LINK_DEPS=auto
62PKG_CONFIG=false
63
64NEED_GNU_SOURCE=false
65
66PREFIX='/usr/local'
67PREFIX_BIN=''
68PREFIX_SBIN=''
69PREFIX_LIB=''
70PREFIX_INC=''
71PREFIX_MAN=''
72PREFIX_PC=''
73PREFIX_CKPORT=''
74PREFIX_SYSCONF='/etc'
75PREFIX_DEV='/dev'
76PREFIX_DOC=''
77PREFIX_TMP='/tmp'
78PREFIX_VAR='/var'
79PREFIX_CACHE=''
80PREFIX_DATA=''
81PREFIX_LOCK=''
82PREFIX_LOG=''
83PREFIX_MAIL=''
84PREFIX_RUN=''
85PREFIX_SPOOL=''
86
87ROOT_UID=''
88
89HAVE_MAIN_ARGS=true
90
91MINIMAL=false
92BETA=true
93EXPERIMENTAL=true
94
95TARGET_WIN32=false
96TARGET_MICROCONTROLLER=false
97TARGET_CYGWIN=false
98TARGET_TYPE='generic'
99
100EXEC_HELPER=''
101
102IMPLIB=''
103
104# other stuff we need to reset:
105infotext=''
106last_tested_object=''
107
108CCTF="false"
109_CARGS="$@";
110
111#ll
Note: See TracBrowser for help on using the repository browser.