source: roaraudio/build-system/configure.vars @ 5810:d44ff4605fa5

Last change on this file since 5810:d44ff4605fa5 was 5810:d44ff4605fa5, checked in by phi, 11 years ago

added a lot paths to our path config (roar_libroar_get_path())

File size: 1.9 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_SBIN=''
62PREFIX_LIB=''
63PREFIX_INC=''
64PREFIX_MAN=''
65PREFIX_PC=''
66PREFIX_CKPORT=''
67PREFIX_SYSCONF=''
68PREFIX_DEV=''
69PREFIX_DOC=''
70PREFIX_TMP=''
71PREFIX_VAR=''
72PREFIX_CACHE=''
73PREFIX_DATA=''
74PREFIX_LOCK=''
75PREFIX_LOG=''
76PREFIX_MAIL=''
77PREFIX_RUN=''
78PREFIX_SPOOL=''
79
80ROOT_UID=''
81
82HAVE_MAIN_ARGS=true
83
84MINIMAL=false
85BETA=true
86EXPERIMENTAL=true
87
88TARGET_WIN32=false
89TARGET_MICROCONTROLLER=false
90TARGET_CYGWIN=false
91
92EXEC_HELPER=''
93
94# other stuff we need to reset:
95infotext=''
96last_tested_object=''
97
98CCTF="false"
99_CARGS="$@";
100
101#ll
Note: See TracBrowser for help on using the repository browser.