source: roaraudio/build-system/configure.vars @ 5855:95be516bcf3b

Last change on this file since 5855:95be516bcf3b was 5855:95be516bcf3b, checked in by phi, 11 years ago

updated win32 port: added support for implib as well disabling debug infos (which is hardly useful outside win*)

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