File: cross-config.linux

package info (click to toggle)
dpkg-cross 1.2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 172 kB
  • ctags: 8
  • sloc: perl: 1,457; makefile: 56; sh: 21; sed: 9
file content (28 lines) | stat: -rw-r--r-- 910 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# preset values of configure variables for cross-compiling to any linux system
#
# These values cannot determined when cross-compiling, because configure would
# have to run a target arch test program, which is not possible on the build
# host. So supply them manually...
#
ac_cv_header_stdc=yes
ac_cv_func_closedir_void=no
kb_cv_func_putenv_malloc=no
ac_cv_func_vfork=yes
ac_cv_func_setvbuf_reversed=no

# the following are used by ncurses, but the values aren't cached, so
# they can't be preset here :-( But configure doesn't abort with
# an error if the value cannot be determined, it uses a reasonable default
#nc_cv_link_dataonly=
#nc_cv_use_tiocgwinsz=
#nc_cv_sizeof_bool=

#
# include architecture-specific variables
#
ac_arch_site_file="`dirname $ac_site_file`/cross-config.$ARCH"
if test -r "$ac_arch_site_file"; then
    echo "loading arch site script $ac_arcg_site_file"
	. $ac_arch_site_file
fi