diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/base.bbclass | 4 | ||||
-rw-r--r-- | meta/classes/siteinfo.bbclass | 126 | ||||
-rw-r--r-- | meta/conf/bitbake.conf | 6 | ||||
-rw-r--r-- | meta/site/arm-linux | 16 | ||||
-rw-r--r-- | meta/site/arm-linux-gnueabi | 307 | ||||
-rw-r--r-- | meta/site/arm-linux-uclibc | 3 | ||||
-rw-r--r-- | meta/site/armeb-linux | 6 | ||||
-rw-r--r-- | meta/site/armeb-linux-uclibc | 6 | ||||
-rw-r--r-- | meta/site/endian-big | 2 | ||||
-rw-r--r-- | meta/site/endian-little | 2 | ||||
-rw-r--r-- | meta/site/i386-linux | 98 | ||||
-rw-r--r-- | meta/site/i386-linux-uclibc | 65 | ||||
-rw-r--r-- | meta/site/i486-linux | 131 | ||||
-rw-r--r-- | meta/site/i586-linux | 132 | ||||
-rw-r--r-- | meta/site/i686-linux-uclibc | 192 | ||||
-rw-r--r-- | meta/site/ix86-common (renamed from meta/site/i686-linux) | 231 | ||||
-rw-r--r-- | meta/site/mipsel-linux | 5 | ||||
-rw-r--r-- | meta/site/mipsel-linux-uclibc | 5 | ||||
-rw-r--r-- | meta/site/powerpc-linux | 3 | ||||
-rw-r--r-- | meta/site/sh-common (renamed from meta/site/sh4-linux) | 28 | ||||
-rw-r--r-- | meta/site/sh3-linux | 360 | ||||
-rw-r--r-- | meta/site/sh4-linux-uclibc | 19 | ||||
-rw-r--r-- | meta/site/sparc-linux | 2 | ||||
-rw-r--r-- | meta/site/x86_64-linux | 7 | ||||
-rw-r--r-- | meta/site/x86_64-linux-uclibc | 2 |
25 files changed, 332 insertions, 1426 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 8a4edf9133..4c88e9a6b7 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -732,6 +732,10 @@ python () { | |||
732 | # Patch handling | 732 | # Patch handling |
733 | inherit patch | 733 | inherit patch |
734 | 734 | ||
735 | # Configuration data from site files | ||
736 | # Move to autotools.bbclass? | ||
737 | inherit siteinfo | ||
738 | |||
735 | EXPORT_FUNCTIONS do_clean do_mrproper do_fetch do_unpack do_configure do_compile do_install do_package do_populate_pkgs do_stage do_rebuild do_fetchall | 739 | EXPORT_FUNCTIONS do_clean do_mrproper do_fetch do_unpack do_configure do_compile do_install do_package do_populate_pkgs do_stage do_rebuild do_fetchall |
736 | 740 | ||
737 | MIRRORS[func] = "0" | 741 | MIRRORS[func] = "0" |
diff --git a/meta/classes/siteinfo.bbclass b/meta/classes/siteinfo.bbclass new file mode 100644 index 0000000000..5a37768b52 --- /dev/null +++ b/meta/classes/siteinfo.bbclass | |||
@@ -0,0 +1,126 @@ | |||
1 | # This class exists to provide information about the targets that | ||
2 | # may be needed by other classes and/or recipes. If you add a new | ||
3 | # target this will probably need to be updated. | ||
4 | |||
5 | # | ||
6 | # Returns information about 'what' for the named target 'target' | ||
7 | # where 'target' == "<arch>-<os>" | ||
8 | # | ||
9 | # 'what' can be one of | ||
10 | # * target: Returns the target name ("<arch>-<os>") | ||
11 | # * endianess: Return "be" for big endian targets, "le" for little endian | ||
12 | # * bits: Returns the bit size of the target, either "32" or "64" | ||
13 | # * libc: Returns the name of the c library used by the target | ||
14 | # | ||
15 | # It is an error for the target not to exist. | ||
16 | # If 'what' doesn't exist then an empty value is returned | ||
17 | # | ||
18 | def get_siteinfo_list(d): | ||
19 | import bb | ||
20 | |||
21 | target = bb.data.getVar('HOST_ARCH', d, 1) + "-" + bb.data.getVar('HOST_OS', d, 1) | ||
22 | |||
23 | targetinfo = {\ | ||
24 | "armeb-linux": "endian-big bit-32 common-glibc arm-common",\ | ||
25 | "armeb-linux-uclibc": "endian-big bit-32 common-uclibc arm-common",\ | ||
26 | "arm-linux": "endian-little bit-32 common-glibc arm-common",\ | ||
27 | "arm-linux-gnueabi": "endian-little bit-32 common-glibc arm-common arm-linux",\ | ||
28 | "arm-linux-uclibc": "endian-little bit-32 common-uclibc arm-common",\ | ||
29 | "arm-linux-uclibcgnueabi": "endian-little bit-32 common-uclibc arm-common arm-linux-uclibc",\ | ||
30 | "i386-linux": "endian-little bit-32 common-glibc ix86-common",\ | ||
31 | "i486-linux": "endian-little bit-32 common-glibc ix86-common",\ | ||
32 | "i586-linux": "endian-little bit-32 common-glibc ix86-common",\ | ||
33 | "i686-linux": "endian-little bit-32 common-glibc ix86-common",\ | ||
34 | "i386-linux-uclibc": "endian-little bit-32 common-uclibc ix86-common",\ | ||
35 | "i486-linux-uclibc": "endian-little bit-32 common-uclibc ix86-common",\ | ||
36 | "i586-linux-uclibc": "endian-little bit-32 common-uclibc ix86-common",\ | ||
37 | "i686-linux-uclibc": "endian-little bit-32 common-uclibc ix86-common",\ | ||
38 | "mipsel-linux": "endian-little bit-32 common-glibc",\ | ||
39 | "mipsel-linux-uclibc": "endian-little bit-32 common-uclibc",\ | ||
40 | "powerpc-darwin": "endian-big bit-32 common-darwin",\ | ||
41 | "powerpc-linux": "endian-big bit-32 common-glibc",\ | ||
42 | "powerpc-linux-uclibc": "endian-big bit-32 common-uclibc",\ | ||
43 | "sh3-linux": "endian-little bit-32 common-glibc sh-common",\ | ||
44 | "sh4-linux": "endian-little bit-32 common-glibc sh-common",\ | ||
45 | "sh4-linux-uclibc": "endian-little bit-32 common-uclibc sh-common",\ | ||
46 | "sparc-linux": "endian-big bit-32 common-glibc",\ | ||
47 | "x86_64-linux": "endian-little bit-64 common-glibc",\ | ||
48 | "x86_64-linux-uclibc": "endian-little bit-64 common-uclibc"} | ||
49 | if target in targetinfo: | ||
50 | info = targetinfo[target].split() | ||
51 | info.append(target) | ||
52 | return info | ||
53 | else: | ||
54 | bb.error("Information not available for target '%s'" % target) | ||
55 | |||
56 | |||
57 | # | ||
58 | # Define which site files to use. We check for several site files and | ||
59 | # use each one that is found, based on the list returned by get_siteinfo_list() | ||
60 | # | ||
61 | # Search for the files in the following directories: | ||
62 | # 1) ${BBPATH}/site (in reverse) - app specific, then site wide | ||
63 | # 2) ${FILE_DIRNAME}/site-${PV} - app version specific | ||
64 | # | ||
65 | def siteinfo_get_files(d): | ||
66 | import bb, os | ||
67 | |||
68 | sitefiles = "" | ||
69 | |||
70 | # Determine which site files to look for | ||
71 | sites = get_siteinfo_list(d) | ||
72 | sites.append("common"); | ||
73 | |||
74 | # Check along bbpath for site files and append in reverse order so | ||
75 | # the application specific sites files are last and system site | ||
76 | # files first. | ||
77 | path_bb = bb.data.getVar('BBPATH', d, 1) | ||
78 | for p in (path_bb or "").split(':'): | ||
79 | tmp = "" | ||
80 | for i in sites: | ||
81 | fname = os.path.join(p, 'site', i) | ||
82 | if os.path.exists(fname): | ||
83 | tmp += fname + " " | ||
84 | sitefiles = tmp + sitefiles; | ||
85 | |||
86 | # Now check for the applications version specific site files | ||
87 | path_pkgv = os.path.join(bb.data.getVar('FILE_DIRNAME', d, 1), "site-" + bb.data.getVar('PV', d, 1)) | ||
88 | for i in sites: | ||
89 | fname = os.path.join(path_pkgv, i) | ||
90 | if os.path.exists(fname): | ||
91 | sitefiles += fname + " " | ||
92 | |||
93 | bb.note("SITE files " + sitefiles); | ||
94 | return sitefiles | ||
95 | |||
96 | # | ||
97 | # Export CONFIG_SITE to the enviroment. The autotools will make use | ||
98 | # of this to determine where to load in variables from. This is a | ||
99 | # space seperate list of shell scripts processed in the order listed. | ||
100 | # | ||
101 | export CONFIG_SITE = "${@siteinfo_get_files(d)}" | ||
102 | |||
103 | |||
104 | def siteinfo_get_endianess(d): | ||
105 | info = get_siteinfo_list(d) | ||
106 | if 'endian-little' in info: | ||
107 | return "le" | ||
108 | elif 'endian-big' in info: | ||
109 | return "be" | ||
110 | bb.error("Site info could not determine endianess for target") | ||
111 | |||
112 | def siteinfo_get_bits(d): | ||
113 | info = get_siteinfo_list(d) | ||
114 | if 'bit-32' in info: | ||
115 | return "32" | ||
116 | elif 'bit-64' in info: | ||
117 | return "64" | ||
118 | bb.error("Site info could not determine bit size for target") | ||
119 | |||
120 | # | ||
121 | # Make some information available via variables | ||
122 | # | ||
123 | SITEINFO_ENDIANESS = "${@siteinfo_get_endianess(d)}" | ||
124 | SITEINFO_BITS = "${@siteinfo_get_bits(d)}" | ||
125 | |||
126 | |||
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 79d61c0f62..e5a8b76273 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -384,10 +384,6 @@ export QMAKE_MKSPEC_PATH = "${STAGING_DIR}/${BUILD_SYS}/share/qmake" | |||
384 | export STAGING_SIPDIR = "${STAGING_DIR}/${BUILD_SYS}/share/sip" | 384 | export STAGING_SIPDIR = "${STAGING_DIR}/${BUILD_SYS}/share/sip" |
385 | export STAGING_IDLDIR = "${STAGING_DATADIR}/idl" | 385 | export STAGING_IDLDIR = "${STAGING_DATADIR}/idl" |
386 | 386 | ||
387 | # default test results for autoconf | ||
388 | # possible candidate for moving into autotools.oeclass -CL | ||
389 | export CONFIG_SITE = "${@bb.which(bb.data.getVar('BBPATH', d, 1), 'site/%s-%s' % (bb.data.getVar('HOST_ARCH', d, 1), bb.data.getVar('HOST_OS', d, 1)))}" | ||
390 | |||
391 | # library package naming | 387 | # library package naming |
392 | AUTO_LIBNAME_PKGS = "${PACKAGES}" | 388 | AUTO_LIBNAME_PKGS = "${PACKAGES}" |
393 | 389 | ||
@@ -429,8 +425,6 @@ MACHINE_TASK_PROVIDER ?= "task-bootstrap" | |||
429 | IMAGE_ROOTFS_SIZE_ext2 ?= "65536" | 425 | IMAGE_ROOTFS_SIZE_ext2 ?= "65536" |
430 | IMAGE_ROOTFS_SIZE_ext2.gz ?= "65536" | 426 | IMAGE_ROOTFS_SIZE_ext2.gz ?= "65536" |
431 | 427 | ||
432 | |||
433 | |||
434 | ################################################################## | 428 | ################################################################## |
435 | # Magic Cookie for SANITY CHECK | 429 | # Magic Cookie for SANITY CHECK |
436 | ################################################################## | 430 | ################################################################## |
diff --git a/meta/site/arm-linux b/meta/site/arm-linux index ae255e24b8..3c1a082bd7 100644 --- a/meta/site/arm-linux +++ b/meta/site/arm-linux | |||
@@ -10,11 +10,13 @@ ac_cv_sizeof_char=${ac_cv_sizeof_char=1} | |||
10 | ac_cv_sizeof_wchar_t=${ac_cv_sizeof_wchar_t=1} | 10 | ac_cv_sizeof_wchar_t=${ac_cv_sizeof_wchar_t=1} |
11 | ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_char=1} | 11 | ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_char=1} |
12 | ac_cv_sizeof_bool=${ac_cv_sizeof_bool=1} | 12 | ac_cv_sizeof_bool=${ac_cv_sizeof_bool=1} |
13 | ac_cv_sizeof_char_p=${ac_cv_sizeof_int_p=4} | ||
13 | ac_cv_sizeof_int=${ac_cv_sizeof_int=4} | 14 | ac_cv_sizeof_int=${ac_cv_sizeof_int=4} |
14 | ac_cv_sizeof_int_p=${ac_cv_sizeof_int_p=4} | 15 | ac_cv_sizeof_int_p=${ac_cv_sizeof_int_p=4} |
15 | ac_cv_sizeof_long=${ac_cv_sizeof_long=4} | 16 | ac_cv_sizeof_long=${ac_cv_sizeof_long=4} |
16 | ac_cv_sizeof_long_int=${ac_cv_sizeof_long_int=4} | 17 | ac_cv_sizeof_long_int=${ac_cv_sizeof_long_int=4} |
17 | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} | 18 | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} |
19 | ac_cv_sizeof_off_t=${ac_cv_sizeof_off_t=4} | ||
18 | ac_cv_sizeof_short=${ac_cv_sizeof_short=2} | 20 | ac_cv_sizeof_short=${ac_cv_sizeof_short=2} |
19 | ac_cv_sizeof_short_int=${ac_cv_sizeof_short_int=2} | 21 | ac_cv_sizeof_short_int=${ac_cv_sizeof_short_int=2} |
20 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} | 22 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} |
@@ -22,7 +24,9 @@ ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4} | |||
22 | ac_cv_sizeof_float=${ac_cv_sizeof_float=4} | 24 | ac_cv_sizeof_float=${ac_cv_sizeof_float=4} |
23 | ac_cv_sizeof_double=${ac_cv_sizeof_double=8} | 25 | ac_cv_sizeof_double=${ac_cv_sizeof_double=8} |
24 | ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=8} | 26 | ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=8} |
27 | ac_cv_sizeof_ptrdiff_t=${glib_cv_sizeof_ptrdiff_t=4} | ||
25 | ac_cv_sizeof_unsigned_short=${ac_cv_sizeof_unsigned_short=2} | 28 | ac_cv_sizeof_unsigned_short=${ac_cv_sizeof_unsigned_short=2} |
29 | ac_cv_sizeof_unsigned=${ac_cv_sizeof_unsigned=4} | ||
26 | ac_cv_sizeof_unsigned_int=${ac_cv_sizeof_unsigned_int=4} | 30 | ac_cv_sizeof_unsigned_int=${ac_cv_sizeof_unsigned_int=4} |
27 | ac_cv_sizeof_unsigned_long=${ac_cv_sizeof_unsigned_long=4} | 31 | ac_cv_sizeof_unsigned_long=${ac_cv_sizeof_unsigned_long=4} |
28 | ac_cv_sizeof_unsigned_long_long=${ac_cv_sizeof_unsigned_long_long=8} | 32 | ac_cv_sizeof_unsigned_long_long=${ac_cv_sizeof_unsigned_long_long=8} |
@@ -36,8 +40,6 @@ ac_cv_ushort=${ac_cv_ushort=yes} | |||
36 | 40 | ||
37 | mr_cv_target_elf=${mr_cv_target_elf=yes} | 41 | mr_cv_target_elf=${mr_cv_target_elf=yes} |
38 | 42 | ||
39 | ac_cv_c_littleendian=${ac_cv_c_littleendian=yes} | ||
40 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
41 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} | 43 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} |
42 | 44 | ||
43 | # apache | 45 | # apache |
@@ -68,6 +70,7 @@ nano_cv_func_regexec_segv_emptystr=${nano_cv_func_regexec_segv_emptystr=no} | |||
68 | 70 | ||
69 | # libnet | 71 | # libnet |
70 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=lil} | 72 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=lil} |
73 | ac_libnet_have_packet_socket=${ac_libnet_have_packet_socket=yes} | ||
71 | 74 | ||
72 | # screen | 75 | # screen |
73 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} | 76 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} |
@@ -300,3 +303,12 @@ dpkg_cv___va_copy=${ac_cv___va_copy=yes} | |||
300 | 303 | ||
301 | # enca | 304 | # enca |
302 | yeti_cv_func_scanf_modif_size_t=yes | 305 | yeti_cv_func_scanf_modif_size_t=yes |
306 | |||
307 | # clamav | ||
308 | clamav_av_func_working_snprintf_long=${clamav_av_func_working_snprintf_long=yes} | ||
309 | clamav_av_have_in_port_t=${clamav_av_have_in_port_t=yes} | ||
310 | clamav_av_have_in_addr_t=${clamav_av_have_in_addr_t=yes} | ||
311 | ac_cv_func_mmap_fixed_mapped=${ac_cv_func_mmap_fixed_mapped=yes} | ||
312 | |||
313 | #dbus | ||
314 | ac_cv_have_abstract_sockets=${ac_cv_have_abstract_sockets=no} | ||
diff --git a/meta/site/arm-linux-gnueabi b/meta/site/arm-linux-gnueabi deleted file mode 100644 index ce15c881e8..0000000000 --- a/meta/site/arm-linux-gnueabi +++ /dev/null | |||
@@ -1,307 +0,0 @@ | |||
1 | ac_cv_func_getpgrp_void=yes | ||
2 | ac_cv_func_setpgrp_void=yes | ||
3 | ac_cv_func_setgrent_void=yes | ||
4 | ac_cv_func_malloc_0_nonnull=yes | ||
5 | ac_cv_func_malloc_works=yes | ||
6 | ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes} | ||
7 | ac_cv_func_setvbuf_reversed=no | ||
8 | ac_cv_sizeof___int64=${ac_cv_sizeof___int64=0} | ||
9 | ac_cv_sizeof_char=${ac_cv_sizeof_char=1} | ||
10 | ac_cv_sizeof_wchar_t=${ac_cv_sizeof_wchar_t=1} | ||
11 | ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_char=1} | ||
12 | ac_cv_sizeof_bool=${ac_cv_sizeof_bool=1} | ||
13 | ac_cv_sizeof_char_p=${ac_cv_sizeof_int_p=4} | ||
14 | ac_cv_sizeof_int=${ac_cv_sizeof_int=4} | ||
15 | ac_cv_sizeof_int_p=${ac_cv_sizeof_int_p=4} | ||
16 | ac_cv_sizeof_long=${ac_cv_sizeof_long=4} | ||
17 | ac_cv_sizeof_long_int=${ac_cv_sizeof_long_int=4} | ||
18 | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} | ||
19 | ac_cv_sizeof_off_t=${ac_cv_sizeof_off_t=4} | ||
20 | ac_cv_sizeof_short=${ac_cv_sizeof_short=2} | ||
21 | ac_cv_sizeof_short_int=${ac_cv_sizeof_short_int=2} | ||
22 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} | ||
23 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4} | ||
24 | ac_cv_sizeof_float=${ac_cv_sizeof_float=4} | ||
25 | ac_cv_sizeof_double=${ac_cv_sizeof_double=8} | ||
26 | ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=8} | ||
27 | ac_cv_sizeof_ptrdiff_t=${glib_cv_sizeof_ptrdiff_t=4} | ||
28 | ac_cv_sizeof_unsigned_short=${ac_cv_sizeof_unsigned_short=2} | ||
29 | ac_cv_sizeof_unsigned=${ac_cv_sizeof_unsigned=4} | ||
30 | ac_cv_sizeof_unsigned_int=${ac_cv_sizeof_unsigned_int=4} | ||
31 | ac_cv_sizeof_unsigned_long=${ac_cv_sizeof_unsigned_long=4} | ||
32 | ac_cv_sizeof_unsigned_long_long=${ac_cv_sizeof_unsigned_long_long=8} | ||
33 | ac_cv_sizeof_signed_char=${ac_cv_sizeof_signed_char=1} | ||
34 | |||
35 | ac_cv_sys_restartable_syscalls=yes | ||
36 | ac_cv_uchar=${ac_cv_uchar=no} | ||
37 | ac_cv_uint=${ac_cv_uint=yes} | ||
38 | ac_cv_ulong=${ac_cv_ulong=yes} | ||
39 | ac_cv_ushort=${ac_cv_ushort=yes} | ||
40 | |||
41 | mr_cv_target_elf=${mr_cv_target_elf=yes} | ||
42 | |||
43 | ac_cv_c_littleendian=${ac_cv_c_littleendian=yes} | ||
44 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
45 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} | ||
46 | |||
47 | # apache | ||
48 | ac_cv_func_pthread_key_delete=${ac_cv_func_pthread_key_delete=yes} | ||
49 | apr_cv_process_shared_works=${apr_cv_process_shared_works=no} | ||
50 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} | ||
51 | |||
52 | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} | ||
53 | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} | ||
54 | ac_cv_sctp=${ac_cv_sctp=no} | ||
55 | |||
56 | # ssh | ||
57 | ac_cv_have_space_d_name_in_struct_dirent=${ac_cv_dirent_have_space_d_name=yes} | ||
58 | ac_cv_have_broken_snprintf=${ac_cv_have_broken_snprintf=no} | ||
59 | ac_cv_have_accrights_in_msghdr=${ac_cv_have_accrights_in_msghdr=no} | ||
60 | ac_cv_have_control_in_msghdr=${ac_cv_have_control_in_msghdr=yes} | ||
61 | ac_cv_have_openpty_ctty_bug=${ac_cv_have_openpty_ctty_bug=yes} | ||
62 | |||
63 | # coreutils | ||
64 | utils_cv_sys_open_max=${utils_cv_sys_open_max=1019} | ||
65 | |||
66 | # libpcap | ||
67 | ac_cv_linux_vers=${ac_cv_linux_vers=2} | ||
68 | |||
69 | # nano | ||
70 | ac_cv_regexec_segfault_emptystr=${ac_cv_regexec_segfault_emptystr=no} | ||
71 | nano_cv_func_regexec_segv_emptystr=${nano_cv_func_regexec_segv_emptystr=no} | ||
72 | |||
73 | # libnet | ||
74 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=lil} | ||
75 | |||
76 | # screen | ||
77 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} | ||
78 | screen_cv_sys_memcpy_overlap=${screen_cv_sys_memcpy_overlap=no} | ||
79 | screen_cv_sys_memmove_overlap=${screen_cv_sys_memmove_overlap=no} | ||
80 | screen_cv_sys_fifo_broken_impl=${screen_cv_sys_fifo_broken_impl=yes} | ||
81 | screen_cv_sys_fifo_usable=${screen_cv_sys_fifo_usable=yes} | ||
82 | screen_cv_sys_select_broken_retval=${screen_cv_sys_select_broken_retval=no} | ||
83 | screen_cv_sys_sockets_nofs=${screen_cv_sys_sockets_nofs=no} | ||
84 | screen_cv_sys_sockets_usable=${screen_cv_sys_sockets_usable=yes} | ||
85 | screen_cv_sys_terminfo_used=${screen_cv_sys_terminfo_used=yes} | ||
86 | |||
87 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} | ||
88 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} | ||
89 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | ||
90 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} | ||
91 | |||
92 | # socat | ||
93 | ac_cv_ispeed_offset=${ac_cv_ispeed_offset=13} | ||
94 | sc_cv_termios_ispeed=${sc_cv_termios_ispeed=yes} | ||
95 | |||
96 | # links | ||
97 | ac_cv_lib_png_png_create_info_struct=${ac_cv_lib_png_png_create_info_struct=yes} | ||
98 | |||
99 | # samba | ||
100 | samba_cv_HAVE_GETTIMEOFDAY_TZ=${samba_cv_HAVE_GETTIMEOFDAY_TZ=yes} | ||
101 | samba_cv_HAVE_IFACE_IFCONF=${samba_cv_HAVE_IFACE_IFCONF=yes} | ||
102 | samba_cv_HAVE_IFACE_IFREQ=${samba_cv_HAVE_IFACE_IFREQ=yes} | ||
103 | samba_cv_USE_SETEUID=${samba_cv_USE_SETEUID=yes} | ||
104 | samba_cv_USE_SETRESUID=${samba_cv_USE_SETRESUID=yes} | ||
105 | samba_cv_USE_SETREUID=${samba_cv_USE_SETREUID=yes} | ||
106 | samba_cv_USE_SETUIDX=${samba_cv_USE_SETUIDX=yes} | ||
107 | samba_cv_have_setresgid=${samba_cv_have_setresgid=yes} | ||
108 | samba_cv_have_setresuid=${samba_cv_have_setresuid=yes} | ||
109 | samba_cv_HAVE_SENDFILE=${samba_cv_HAVE_SENDFILE=yes} | ||
110 | samba_cv_HAVE_SENDFILE64=${samba_cv_HAVE_SENDFILE64=yes} | ||
111 | samba_cv_HAVE_SECURE_MKSTEMP=${samba_cv_HAVE_SECURE_MKSTEMP=yes} | ||
112 | samba_cv_HAVE_MMAP=${samba_cv_HAVE_MMAP=yes} | ||
113 | samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=${samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=yes} | ||
114 | samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=${samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=yes} | ||
115 | samba_cv_HAVE_KERNEL_SHARE_MODES=${samba_cv_HAVE_KERNEL_SHARE_MODES=yes} | ||
116 | samba_cv_LINUX_LFS_SUPPORT=${samba_cv_LINUX_LFS_SUPPORT=yes} | ||
117 | |||
118 | |||
119 | # sleepycat db | ||
120 | db_cv_fcntl_f_setfd=${db_cv_fcntl_f_setfd=yes} | ||
121 | db_cv_sprintf_count=${db_cv_sprintf_count=yes} | ||
122 | db_cv_path_ar=${db_cv_path_ar=/usr/bin/ar} | ||
123 | db_cv_path_chmod=${db_cv_path_chmod=/bin/chmod} | ||
124 | db_cv_path_cp=${db_cv_path_cp=/bin/cp} | ||
125 | db_cv_path_ln=${db_cv_path_ln=/bin/ln} | ||
126 | db_cv_path_mkdir=${db_cv_path_mkdir=/bin/mkdir} | ||
127 | db_cv_path_ranlib=${db_cv_path_ranlib=/usr/bin/ranlib} | ||
128 | db_cv_path_rm=${db_cv_path_rm=/bin/rm} | ||
129 | db_cv_path_sh=${db_cv_path_sh=/bin/sh} | ||
130 | db_cv_path_strip=${db_cv_path_strip=/usr/bin/strip} | ||
131 | db_cv_align_t=${db_cv_align_t='unsigned long long'} | ||
132 | db_cv_alignp_t=${db_cv_alignp_t='unsigned long'} | ||
133 | db_cv_mutex=${db_cv_mutex=no} | ||
134 | db_cv_posixmutexes=${db_cv_posixmutexes=no} | ||
135 | db_cv_uimutexes=${db_cv_uimutexes=no} | ||
136 | |||
137 | # php | ||
138 | ac_cv_pread=${ac_cv_pread=no} | ||
139 | ac_cv_pwrite=${ac_cv_pwrite=no} | ||
140 | php_cv_lib_cookie_io_functions_use_off64_t=${php_cv_lib_cookie_io_functions_use_off64_t=yes} | ||
141 | |||
142 | # glib | ||
143 | glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24} | ||
144 | glib_cv_sizeof_system_thread=${glib_cv_sizeof_system_thread=4} | ||
145 | glib_cv_stack_grows=${glib_cv_stack_grows=no} | ||
146 | glib_cv_uscore=${glib_cv_uscore=no} | ||
147 | glib_cv_use_pid_surrogate=${glib_cv_use_pid_surrogate=yes} | ||
148 | glib_cv_has__inline=${glib_cv_has__inline=yes} | ||
149 | glib_cv_has__inline__=${glib_cv_has__inline__=yes} | ||
150 | glib_cv_hasinline=${glib_cv_hasinline=yes} | ||
151 | glib_cv_sane_realloc=${glib_cv_sane_realloc=yes} | ||
152 | glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24} | ||
153 | glib_cv_uscore=${glib_cv_uscore=no} | ||
154 | glib_cv_va_copy=${glib_cv_va_copy=no} | ||
155 | glib_cv_va_val_copy=${glib_cv_va_val_copy=yes} | ||
156 | glib_cv___va_copy=${glib_cv___va_copy=yes} | ||
157 | glib_cv_rtldglobal_broken=${glib_cv_rtldglobal_broken=no} | ||
158 | ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} | ||
159 | glib_cv_sys_pthread_mutex_trylock_posix=${glib_cv_sys_pthread_mutex_trylock_posix=yes} | ||
160 | glib_cv_sys_pthread_getspecific_posix=${glib_cv_sys_pthread_getspecific_posix=yes} | ||
161 | glib_cv_sys_pthread_cond_timedwait_posix=${glib_cv_sys_pthread_cond_timedwait_posix=yes} | ||
162 | |||
163 | # ettercap | ||
164 | ettercap_cv_type_socklen_t=${ettercap_cv_type_socklen_t=yes} | ||
165 | |||
166 | # libesmtp | ||
167 | acx_working_snprintf=${acx_working_snprintf=yes} | ||
168 | |||
169 | # D-BUS | ||
170 | ac_cv_func_posix_getpwnam_r=${ac_cv_func_posix_getpwnam_r=yes} | ||
171 | |||
172 | # glib 2.0 | ||
173 | glib_cv_long_long_format=${glib_cv_long_long_format=ll} | ||
174 | glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24} | ||
175 | glib_cv_sizeof_intmax_t=${glib_cv_sizeof_intmax_t=8} | ||
176 | glib_cv_sizeof_ptrdiff_t=${glib_cv_sizeof_ptrdiff_t=4} | ||
177 | glib_cv_sizeof_size_t=${glib_cv_sizeof_size_t=4} | ||
178 | glib_cv_sizeof_system_thread=${glib_cv_sizeof_system_thread=4} | ||
179 | glib_cv_sys_use_pid_niceness_surrogate=${glib_cv_sys_use_pid_niceness_surrogate=yes} | ||
180 | |||
181 | glib_cv_strlcpy=${glib_cv_strlcpy=no} | ||
182 | |||
183 | # httppc | ||
184 | ac_cv_strerror_r_SUSv3=${ac_cv_strerror_r_SUSv3=no} | ||
185 | |||
186 | # jikes | ||
187 | ac_cv_sizeof_wchar_t=4 | ||
188 | |||
189 | # lftp | ||
190 | ac_cv_file___dev_ptc_=yes | ||
191 | ac_cv_need_trio=${ac_cv_need_trio=no} | ||
192 | lftp_cv_va_copy=${lftp_cv_va_copy=no} | ||
193 | lftp_cv_va_val_copy=${lftp_cv_va_val_copy=yes} | ||
194 | lftp_cv___va_copy=${lftp_cv___va_copy=yes} | ||
195 | |||
196 | # edb | ||
197 | db_cv_spinlocks=${db_cv_spinlocks=no} | ||
198 | |||
199 | # fget | ||
200 | compat_cv_func_snprintf_works=${compat_cv_func_snprintf_works=yes} | ||
201 | compat_cv_func_basename_works=${compat_cv_func_basename_works=no} | ||
202 | compat_cv_func_dirname_works=${compat_cv_func_dirname_works=no} | ||
203 | |||
204 | # slrn | ||
205 | slrn_cv___va_copy=${slrn_cv___va_copy=yes} | ||
206 | slrn_cv_va_copy=${slrn_cv_va_copy=no} | ||
207 | slrn_cv_va_val_copy=${slrn_cv_va_val_copy=yes} | ||
208 | ac_cv_func_realloc_works=${ac_cv_func_realloc_works=yes} | ||
209 | ac_cv_func_realloc_0_nonnull=${ac_cv_func_realloc_0_nonnull=yes} | ||
210 | ac_cv_func_malloc_works=${ac_cv_func_malloc_works=yes} | ||
211 | ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes} | ||
212 | |||
213 | # startup-notification | ||
214 | lf_cv_sane_realloc=yes | ||
215 | |||
216 | # libidl | ||
217 | libIDL_cv_long_long_format=${libIDL_cv_long_long_format=ll} | ||
218 | |||
219 | # ORBit2 | ||
220 | ac_cv_alignof_CORBA_boolean=1 | ||
221 | ac_cv_alignof_CORBA_char=1 | ||
222 | ac_cv_alignof_CORBA_double=4 | ||
223 | ac_cv_alignof_CORBA_float=4 | ||
224 | ac_cv_alignof_CORBA_long=4 | ||
225 | ac_cv_alignof_CORBA_long_double=4 | ||
226 | ac_cv_alignof_CORBA_long_long=4 | ||
227 | ac_cv_alignof_CORBA_octet=1 | ||
228 | ac_cv_alignof_CORBA_pointer=4 | ||
229 | ac_cv_alignof_CORBA_short=2 | ||
230 | ac_cv_alignof_CORBA_struct=4 | ||
231 | ac_cv_alignof_CORBA_wchar=2 | ||
232 | ac_cv_func_getaddrinfo=${ac_cv_func_getaddrinfo=yes} | ||
233 | |||
234 | # cvs | ||
235 | cvs_cv_func_printf_ptr=${cvs_cv_func_printf_ptr=yes} | ||
236 | |||
237 | # bash | ||
238 | ac_cv_c_long_double=${ac_cv_c_long_double=yes} | ||
239 | bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes} | ||
240 | bash_cv_func_sigsetjmp=${bash_cv_func_sigsetjmp=missing} | ||
241 | bash_cv_must_reinstall_sighandlers=${bash_cv_must_reinstall_sighandlers=no} | ||
242 | bash_cv_func_strcoll_broken=${bash_cv_func_strcoll_broken=no} | ||
243 | bash_cv_under_sys_siglist=${bash_cv_under_sys_siglist=yes} | ||
244 | bash_cv_sys_siglist=${bash_cv_sys_siglist=yes} | ||
245 | bash_cv_dup2_broken=${bash_cv_dup2_broken=no} | ||
246 | bash_cv_opendir_not_robust=${bash_cv_opendir_not_robust=no} | ||
247 | bash_cv_type_rlimit=${bash_cv_type_rlimit=rlim_t} | ||
248 | bash_cv_getenv_redef=${bash_cv_getenv_redef=yes} | ||
249 | bash_cv_ulimit_maxfds=${bash_cv_ulimit_maxfds=yes} | ||
250 | bash_cv_getcwd_calls_popen=${bash_cv_getcwd_calls_popen=no} | ||
251 | bash_cv_printf_a_format=${bash_cv_printf_a_format=yes} | ||
252 | bash_cv_pgrp_pipe=${bash_cv_pgrp_pipe=no} | ||
253 | bash_cv_job_control_missing=${bash_cv_job_control_missing=present} | ||
254 | bash_cv_sys_named_pipes=${bash_cv_sys_named_pipes=present} | ||
255 | bash_cv_unusable_rtsigs=${bash_cv_unusable_rtsigs=no} | ||
256 | ac_cv_have_decl_sys_siglist=${ac_cv_have_decl_sys_siglist=yes} | ||
257 | |||
258 | # mono | ||
259 | cv_mono_sizeof_sunpath=108 | ||
260 | |||
261 | # mysql | ||
262 | mysql_cv_func_atomic_sub=${mysql_cv_func_atomic_sub=no} | ||
263 | mysql_cv_func_atomic_add=${mysql_cv_func_atomic_add=no} | ||
264 | ac_cv_conv_longlong_to_float=${ac_cv_conv_longlong_to_float=yes} | ||
265 | |||
266 | # gettext | ||
267 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} | ||
268 | |||
269 | # fnmatch | ||
270 | ac_cv_func_fnmatch_works=${ac_cv_func_fnmatch_works=yes} | ||
271 | |||
272 | # rsync | ||
273 | rsync_cv_HAVE_BROKEN_LARGEFILE=${rsync_cv_HAVE_BROKEN_LARGEFILE=no} | ||
274 | rsync_cv_HAVE_SOCKETPAIR=${rsync_cv_HAVE_SOCKETPAIR=yes} | ||
275 | rsync_cv_HAVE_LONGLONG=${rsync_cv_HAVE_LONGLONG=yes} | ||
276 | rsync_cv_HAVE_OFF64_T=${rsync_cv_HAVE_OFF64_T=no} | ||
277 | rsync_cv_HAVE_SHORT_INO_T=${rsync_cv_HAVE_SHORT_INO_T=no} | ||
278 | rsync_cv_HAVE_UNSIGNED_CHAR=${rsync_cv_HAVE_UNSIGNED_CHAR=no} | ||
279 | rsync_cv_HAVE_BROKEN_READDIR=${rsync_cv_HAVE_BROKEN_READDIR=no} | ||
280 | rsync_cv_HAVE_GETTIMEOFDAY_TZ=${rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes} | ||
281 | rsync_cv_HAVE_C99_VSNPRINTF=${rsync_cv_HAVE_C99_VSNPRINTF=yes} | ||
282 | rsync_cv_HAVE_SECURE_MKSTEMP=${rsync_cv_HAVE_SECURE_MKSTEMP=yes} | ||
283 | rsync_cv_REPLACE_INET_NTOA=${rsync_cv_REPLACE_INET_NTOA=no} | ||
284 | rsync_cv_REPLACE_INET_ATON=${rsync_cv_REPLACE_INET_ATON=no} | ||
285 | |||
286 | # sudo | ||
287 | sudo_cv_uid_t_len=${sudo_cv_uid_t_len=10} | ||
288 | |||
289 | # ipsec-tools | ||
290 | ac_cv_va_copy=${ac_cv_va_copy=no} | ||
291 | ac_cv_va_val_copy=${ac_cv_va_val_copy=yes} | ||
292 | ac_cv___va_copy=${ac_cv___va_copy=yes} | ||
293 | racoon_cv_bug_getaddrinfo=${racoon_cv_bug_getaddrinfo=no} | ||
294 | |||
295 | # libxfce4util | ||
296 | with_broken_putenv=${with_broken_putenv=no} | ||
297 | |||
298 | # xffm | ||
299 | jm_cv_func_working_readdir=yes | ||
300 | |||
301 | # dpkg | ||
302 | dpkg_cv_va_copy=${ac_cv_va_copy=no} | ||
303 | dpkg_cv___va_copy=${ac_cv___va_copy=yes} | ||
304 | |||
305 | # enca | ||
306 | yeti_cv_func_scanf_modif_size_t=yes | ||
307 | |||
diff --git a/meta/site/arm-linux-uclibc b/meta/site/arm-linux-uclibc index 76a93f0f67..ae50b743e3 100644 --- a/meta/site/arm-linux-uclibc +++ b/meta/site/arm-linux-uclibc | |||
@@ -25,8 +25,6 @@ ac_cv_ushort=${ac_cv_ushort=yes} | |||
25 | 25 | ||
26 | mr_cv_target_elf=${mr_cv_target_elf=yes} | 26 | mr_cv_target_elf=${mr_cv_target_elf=yes} |
27 | 27 | ||
28 | ac_cv_c_littleendian=${ac_cv_c_littleendian=yes} | ||
29 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
30 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} | 28 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} |
31 | 29 | ||
32 | # apache | 30 | # apache |
@@ -57,6 +55,7 @@ nano_cv_func_regexec_segv_emptystr=${nano_cv_func_regexec_segv_emptystr=no} | |||
57 | 55 | ||
58 | # libnet | 56 | # libnet |
59 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=lil} | 57 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=lil} |
58 | ac_libnet_have_packet_socket=${ac_libnet_have_packet_socket=yes} | ||
60 | 59 | ||
61 | # screen | 60 | # screen |
62 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} | 61 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} |
diff --git a/meta/site/armeb-linux b/meta/site/armeb-linux index 452e3abbf7..6631ee0cfb 100644 --- a/meta/site/armeb-linux +++ b/meta/site/armeb-linux | |||
@@ -16,6 +16,9 @@ ac_cv_sizeof_short_int=${ac_cv_sizeof_short_int=2} | |||
16 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} | 16 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} |
17 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4} | 17 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4} |
18 | ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=8} | 18 | ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=8} |
19 | ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4} | ||
20 | ac_cv_sizeof_unsigned=${ac_cv_sizeof_unsigned=4} | ||
21 | ac_cv_sizeof_ptrdiff_t=${glib_cv_sizeof_ptrdiff_t=4} | ||
19 | 22 | ||
20 | ac_cv_sys_restartable_syscalls=yes | 23 | ac_cv_sys_restartable_syscalls=yes |
21 | ac_cv_uchar=${ac_cv_uchar=no} | 24 | ac_cv_uchar=${ac_cv_uchar=no} |
@@ -25,8 +28,6 @@ ac_cv_ushort=${ac_cv_ushort=yes} | |||
25 | 28 | ||
26 | mr_cv_target_elf=${mr_cv_target_elf=yes} | 29 | mr_cv_target_elf=${mr_cv_target_elf=yes} |
27 | 30 | ||
28 | ac_cv_c_littleendian=${ac_cv_c_littleendian=no} | ||
29 | ac_cv_c_bigendian=${ac_cv_c_bigendian=yes} | ||
30 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} | 31 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} |
31 | 32 | ||
32 | # apache | 33 | # apache |
@@ -57,6 +58,7 @@ nano_cv_func_regexec_segv_emptystr=${nano_cv_func_regexec_segv_emptystr=no} | |||
57 | 58 | ||
58 | # libnet | 59 | # libnet |
59 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=big} | 60 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=big} |
61 | ac_libnet_have_packet_socket=${ac_libnet_have_packet_socket=yes} | ||
60 | 62 | ||
61 | # screen | 63 | # screen |
62 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} | 64 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} |
diff --git a/meta/site/armeb-linux-uclibc b/meta/site/armeb-linux-uclibc index 89a2a3f104..f4e5e4faab 100644 --- a/meta/site/armeb-linux-uclibc +++ b/meta/site/armeb-linux-uclibc | |||
@@ -16,6 +16,9 @@ ac_cv_sizeof_short_int=${ac_cv_sizeof_short_int=2} | |||
16 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} | 16 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} |
17 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4} | 17 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4} |
18 | ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=8} | 18 | ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=8} |
19 | ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4} | ||
20 | ac_cv_sizeof_unsigned=${ac_cv_sizeof_unsigned=4} | ||
21 | ac_cv_sizeof_ptrdiff_t=${glib_cv_sizeof_ptrdiff_t=4} | ||
19 | 22 | ||
20 | ac_cv_sys_restartable_syscalls=yes | 23 | ac_cv_sys_restartable_syscalls=yes |
21 | ac_cv_uchar=${ac_cv_uchar=no} | 24 | ac_cv_uchar=${ac_cv_uchar=no} |
@@ -25,8 +28,6 @@ ac_cv_ushort=${ac_cv_ushort=yes} | |||
25 | 28 | ||
26 | mr_cv_target_elf=${mr_cv_target_elf=yes} | 29 | mr_cv_target_elf=${mr_cv_target_elf=yes} |
27 | 30 | ||
28 | ac_cv_c_littleendian=${ac_cv_c_littleendian=no} | ||
29 | ac_cv_c_bigendian=${ac_cv_c_bigendian=yes} | ||
30 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} | 31 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} |
31 | 32 | ||
32 | # apache | 33 | # apache |
@@ -57,6 +58,7 @@ nano_cv_func_regexec_segv_emptystr=${nano_cv_func_regexec_segv_emptystr=no} | |||
57 | 58 | ||
58 | # libnet | 59 | # libnet |
59 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=big} | 60 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=big} |
61 | ac_libnet_have_packet_socket=${ac_libnet_have_packet_socket=yes} | ||
60 | 62 | ||
61 | # screen | 63 | # screen |
62 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} | 64 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} |
diff --git a/meta/site/endian-big b/meta/site/endian-big new file mode 100644 index 0000000000..baa7161476 --- /dev/null +++ b/meta/site/endian-big | |||
@@ -0,0 +1,2 @@ | |||
1 | ac_cv_c_littleendian=${ac_cv_c_littleendian=no} | ||
2 | ac_cv_c_bigendian=${ac_cv_c_bigendian=yes} | ||
diff --git a/meta/site/endian-little b/meta/site/endian-little new file mode 100644 index 0000000000..c66db59f31 --- /dev/null +++ b/meta/site/endian-little | |||
@@ -0,0 +1,2 @@ | |||
1 | ac_cv_c_littleendian=${ac_cv_c_littleendian=yes} | ||
2 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
diff --git a/meta/site/i386-linux b/meta/site/i386-linux deleted file mode 100644 index 6acbf933af..0000000000 --- a/meta/site/i386-linux +++ /dev/null | |||
@@ -1,98 +0,0 @@ | |||
1 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
2 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} | ||
3 | ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} | ||
4 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} | ||
5 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} | ||
6 | ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes} | ||
7 | ac_cv_func_pthread_key_delete=${ac_cv_func_pthread_key_delete=yes} | ||
8 | ac_cv_func_setpgrp_void=${ac_cv_func_setpgrp_void=yes} | ||
9 | ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no} | ||
10 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | ||
11 | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} | ||
12 | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} | ||
13 | ac_cv_linux_vers=${ac_cv_linux_vers=2} | ||
14 | ac_cv_sctp=${ac_cv_sctp=no} | ||
15 | ac_cv_sizeof_char=${ac_cv_sizeof_char=1} | ||
16 | ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4} | ||
17 | ac_cv_sizeof_int=${ac_cv_sizeof_int=4} | ||
18 | ac_cv_sizeof_long=${ac_cv_sizeof_long=4} | ||
19 | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} | ||
20 | ac_cv_sizeof_short=${ac_cv_sizeof_short=2} | ||
21 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} | ||
22 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} | ||
23 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4} | ||
24 | apr_cv_process_shared_works=${apr_cv_process_shared_works=no} | ||
25 | bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes} | ||
26 | db_cv_alignp_t=${db_cv_alignp_t='unsigned long'} | ||
27 | db_cv_align_t=${db_cv_align_t='unsigned long long'} | ||
28 | db_cv_fcntl_f_setfd=${db_cv_fcntl_f_setfd=yes} | ||
29 | db_cv_mutex=${db_cv_mutex=x86/gcc-assembly} | ||
30 | db_cv_path_ar=${db_cv_path_ar=/usr/bin/ar} | ||
31 | db_cv_path_chmod=${db_cv_path_chmod=/bin/chmod} | ||
32 | db_cv_path_cp=${db_cv_path_cp=/bin/cp} | ||
33 | db_cv_path_ln=${db_cv_path_ln=/bin/ln} | ||
34 | db_cv_path_mkdir=${db_cv_path_mkdir=/bin/mkdir} | ||
35 | db_cv_path_ranlib=${db_cv_path_ranlib=/usr/bin/ranlib} | ||
36 | db_cv_path_rm=${db_cv_path_rm=/bin/rm} | ||
37 | db_cv_path_sh=${db_cv_path_sh=/bin/sh} | ||
38 | db_cv_path_strip=${db_cv_path_strip=/usr/bin/strip} | ||
39 | db_cv_posixmutexes=${db_cv_posixmutexes=no} | ||
40 | db_cv_sprintf_count=${db_cv_sprintf_count=yes} | ||
41 | db_cv_uimutexes=${db_cv_uimutexes=no} | ||
42 | glib_cv_has__inline=${glib_cv_has__inline=yes} | ||
43 | glib_cv_has__inline__=${glib_cv_has__inline__=yes} | ||
44 | glib_cv_hasinline=${glib_cv_hasinline=yes} | ||
45 | glib_cv_sane_realloc=${glib_cv_sane_realloc=yes} | ||
46 | glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24} | ||
47 | glib_cv_sys_pthread_cond_timedwait_posix=${glib_cv_sys_pthread_cond_timedwait_posix=yes} | ||
48 | glib_cv_sys_pthread_getspecific_posix=${glib_cv_sys_pthread_getspecific_posix=yes} | ||
49 | glib_cv_sys_pthread_mutex_trylock_posix=${glib_cv_sys_pthread_mutex_trylock_posix=yes} | ||
50 | glib_cv_uscore=${glib_cv_uscore=no} | ||
51 | glib_cv___va_copy=${glib_cv___va_copy=yes} | ||
52 | glib_cv_va_copy=${glib_cv_va_copy=yes} | ||
53 | glib_cv_va_val_copy=${glib_cv_va_val_copy=yes} | ||
54 | utils_cv_sys_open_max=${utils_cv_sys_open_max=1015} | ||
55 | |||
56 | # glib-2.0 | ||
57 | glib_cv_stack_grows=${glib_cv_stack_grows=no} | ||
58 | ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes} | ||
59 | glib_cv_use_pid_surrogate=${glib_cv_use_pid_surrogate=yes} | ||
60 | |||
61 | # startup-notification | ||
62 | lf_cv_sane_realloc=yes | ||
63 | |||
64 | # libidl | ||
65 | libIDL_cv_long_long_format=${libIDL_cv_long_long_format=ll} | ||
66 | |||
67 | # ORBit2 | ||
68 | ac_cv_alignof_CORBA_boolean=1 | ||
69 | ac_cv_alignof_CORBA_char=1 | ||
70 | ac_cv_alignof_CORBA_double=4 | ||
71 | ac_cv_alignof_CORBA_float=4 | ||
72 | ac_cv_alignof_CORBA_long=4 | ||
73 | ac_cv_alignof_CORBA_long_double=4 | ||
74 | ac_cv_alignof_CORBA_long_long=4 | ||
75 | ac_cv_alignof_CORBA_octet=1 | ||
76 | ac_cv_alignof_CORBA_pointer=4 | ||
77 | ac_cv_alignof_CORBA_short=2 | ||
78 | ac_cv_alignof_CORBA_struct=4 | ||
79 | ac_cv_alignof_CORBA_wchar=2 | ||
80 | ac_cv_func_getaddrinfo=${ac_cv_func_getaddrinfo=yes} | ||
81 | |||
82 | # D-BUS | ||
83 | ac_cv_func_posix_getpwnam_r=${ac_cv_func_posix_getpwnam_r=yes} | ||
84 | |||
85 | # samba | ||
86 | samba_cv_HAVE_GETTIMEOFDAY_TZ=${samba_cv_HAVE_GETTIMEOFDAY_TZ=yes} | ||
87 | |||
88 | # gettext | ||
89 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} | ||
90 | |||
91 | # cvs | ||
92 | cvs_cv_func_printf_ptr=${cvs_cv_func_printf_ptr=yes} | ||
93 | |||
94 | # libxfce4util | ||
95 | with_broken_putenv=${with_broken_putenv=no} | ||
96 | |||
97 | # xffm | ||
98 | jm_cv_func_working_readdir=yes | ||
diff --git a/meta/site/i386-linux-uclibc b/meta/site/i386-linux-uclibc deleted file mode 100644 index 83b62fa01c..0000000000 --- a/meta/site/i386-linux-uclibc +++ /dev/null | |||
@@ -1,65 +0,0 @@ | |||
1 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
2 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} | ||
3 | ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} | ||
4 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} | ||
5 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} | ||
6 | ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes} | ||
7 | ac_cv_func_pthread_key_delete=${ac_cv_func_pthread_key_delete=yes} | ||
8 | ac_cv_func_setpgrp_void=${ac_cv_func_setpgrp_void=yes} | ||
9 | ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no} | ||
10 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | ||
11 | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} | ||
12 | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} | ||
13 | ac_cv_linux_vers=${ac_cv_linux_vers=2} | ||
14 | ac_cv_sctp=${ac_cv_sctp=no} | ||
15 | ac_cv_sizeof_char=${ac_cv_sizeof_char=1} | ||
16 | ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4} | ||
17 | ac_cv_sizeof_int=${ac_cv_sizeof_int=4} | ||
18 | ac_cv_sizeof_long=${ac_cv_sizeof_long=4} | ||
19 | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} | ||
20 | ac_cv_sizeof_short=${ac_cv_sizeof_short=2} | ||
21 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} | ||
22 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} | ||
23 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4} | ||
24 | apr_cv_process_shared_works=${apr_cv_process_shared_works=no} | ||
25 | bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes} | ||
26 | db_cv_alignp_t=${db_cv_alignp_t='unsigned long'} | ||
27 | db_cv_align_t=${db_cv_align_t='unsigned long long'} | ||
28 | db_cv_fcntl_f_setfd=${db_cv_fcntl_f_setfd=yes} | ||
29 | db_cv_mutex=${db_cv_mutex=x86/gcc-assembly} | ||
30 | db_cv_path_ar=${db_cv_path_ar=/usr/bin/ar} | ||
31 | db_cv_path_chmod=${db_cv_path_chmod=/bin/chmod} | ||
32 | db_cv_path_cp=${db_cv_path_cp=/bin/cp} | ||
33 | db_cv_path_ln=${db_cv_path_ln=/bin/ln} | ||
34 | db_cv_path_mkdir=${db_cv_path_mkdir=/bin/mkdir} | ||
35 | db_cv_path_ranlib=${db_cv_path_ranlib=/usr/bin/ranlib} | ||
36 | db_cv_path_rm=${db_cv_path_rm=/bin/rm} | ||
37 | db_cv_path_sh=${db_cv_path_sh=/bin/sh} | ||
38 | db_cv_path_strip=${db_cv_path_strip=/usr/bin/strip} | ||
39 | db_cv_posixmutexes=${db_cv_posixmutexes=no} | ||
40 | db_cv_sprintf_count=${db_cv_sprintf_count=yes} | ||
41 | db_cv_uimutexes=${db_cv_uimutexes=no} | ||
42 | glib_cv_has__inline=${glib_cv_has__inline=yes} | ||
43 | glib_cv_has__inline__=${glib_cv_has__inline__=yes} | ||
44 | glib_cv_hasinline=${glib_cv_hasinline=yes} | ||
45 | glib_cv_sane_realloc=${glib_cv_sane_realloc=yes} | ||
46 | glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24} | ||
47 | glib_cv_sys_pthread_cond_timedwait_posix=${glib_cv_sys_pthread_cond_timedwait_posix=yes} | ||
48 | glib_cv_sys_pthread_getspecific_posix=${glib_cv_sys_pthread_getspecific_posix=yes} | ||
49 | glib_cv_sys_pthread_mutex_trylock_posix=${glib_cv_sys_pthread_mutex_trylock_posix=yes} | ||
50 | glib_cv_uscore=${glib_cv_uscore=no} | ||
51 | glib_cv___va_copy=${glib_cv___va_copy=yes} | ||
52 | glib_cv_va_copy=${glib_cv_va_copy=yes} | ||
53 | glib_cv_va_val_copy=${glib_cv_va_val_copy=yes} | ||
54 | utils_cv_sys_open_max=${utils_cv_sys_open_max=1015} | ||
55 | |||
56 | # glib-2.0 | ||
57 | glib_cv_stack_grows=${glib_cv_stack_grows=no} | ||
58 | ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes} | ||
59 | glib_cv_use_pid_surrogate=${glib_cv_use_pid_surrogate=yes} | ||
60 | |||
61 | # gettext | ||
62 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} | ||
63 | |||
64 | # cvs | ||
65 | cvs_cv_func_printf_ptr=${cvs_cv_func_printf_ptr=yes} | ||
diff --git a/meta/site/i486-linux b/meta/site/i486-linux deleted file mode 100644 index 5ead29bb94..0000000000 --- a/meta/site/i486-linux +++ /dev/null | |||
@@ -1,131 +0,0 @@ | |||
1 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
2 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} | ||
3 | ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} | ||
4 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} | ||
5 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} | ||
6 | ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes} | ||
7 | ac_cv_func_pthread_key_delete=${ac_cv_func_pthread_key_delete=yes} | ||
8 | ac_cv_func_setpgrp_void=${ac_cv_func_setpgrp_void=yes} | ||
9 | ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no} | ||
10 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | ||
11 | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} | ||
12 | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} | ||
13 | ac_cv_linux_vers=${ac_cv_linux_vers=2} | ||
14 | ac_cv_sctp=${ac_cv_sctp=no} | ||
15 | ac_cv_sizeof_char=${ac_cv_sizeof_char=1} | ||
16 | ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4} | ||
17 | ac_cv_sizeof_int=${ac_cv_sizeof_int=4} | ||
18 | ac_cv_sizeof_long=${ac_cv_sizeof_long=4} | ||
19 | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} | ||
20 | ac_cv_sizeof_short=${ac_cv_sizeof_short=2} | ||
21 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} | ||
22 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} | ||
23 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4} | ||
24 | apr_cv_process_shared_works=${apr_cv_process_shared_works=no} | ||
25 | bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes} | ||
26 | db_cv_alignp_t=${db_cv_alignp_t='unsigned long'} | ||
27 | db_cv_align_t=${db_cv_align_t='unsigned long long'} | ||
28 | db_cv_fcntl_f_setfd=${db_cv_fcntl_f_setfd=yes} | ||
29 | db_cv_mutex=${db_cv_mutex=x86/gcc-assembly} | ||
30 | db_cv_path_ar=${db_cv_path_ar=/usr/bin/ar} | ||
31 | db_cv_path_chmod=${db_cv_path_chmod=/bin/chmod} | ||
32 | db_cv_path_cp=${db_cv_path_cp=/bin/cp} | ||
33 | db_cv_path_ln=${db_cv_path_ln=/bin/ln} | ||
34 | db_cv_path_mkdir=${db_cv_path_mkdir=/bin/mkdir} | ||
35 | db_cv_path_ranlib=${db_cv_path_ranlib=/usr/bin/ranlib} | ||
36 | db_cv_path_rm=${db_cv_path_rm=/bin/rm} | ||
37 | db_cv_path_sh=${db_cv_path_sh=/bin/sh} | ||
38 | db_cv_path_strip=${db_cv_path_strip=/usr/bin/strip} | ||
39 | db_cv_posixmutexes=${db_cv_posixmutexes=no} | ||
40 | db_cv_sprintf_count=${db_cv_sprintf_count=yes} | ||
41 | db_cv_uimutexes=${db_cv_uimutexes=no} | ||
42 | glib_cv_has__inline=${glib_cv_has__inline=yes} | ||
43 | glib_cv_has__inline__=${glib_cv_has__inline__=yes} | ||
44 | glib_cv_hasinline=${glib_cv_hasinline=yes} | ||
45 | glib_cv_sane_realloc=${glib_cv_sane_realloc=yes} | ||
46 | glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24} | ||
47 | glib_cv_sys_pthread_cond_timedwait_posix=${glib_cv_sys_pthread_cond_timedwait_posix=yes} | ||
48 | glib_cv_sys_pthread_getspecific_posix=${glib_cv_sys_pthread_getspecific_posix=yes} | ||
49 | glib_cv_sys_pthread_mutex_trylock_posix=${glib_cv_sys_pthread_mutex_trylock_posix=yes} | ||
50 | glib_cv_uscore=${glib_cv_uscore=no} | ||
51 | glib_cv___va_copy=${glib_cv___va_copy=yes} | ||
52 | glib_cv_va_copy=${glib_cv_va_copy=yes} | ||
53 | glib_cv_va_val_copy=${glib_cv_va_val_copy=yes} | ||
54 | |||
55 | # glib-2.0 | ||
56 | glib_cv_stack_grows=${glib_cv_stack_grows=no} | ||
57 | utils_cv_sys_open_max=${utils_cv_sys_open_max=1015} | ||
58 | ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes} | ||
59 | glib_cv_use_pid_surrogate=${glib_cv_use_pid_surrogate=yes} | ||
60 | |||
61 | # jikes-native | ||
62 | ac_cv_sizeof_wchar_t=4 | ||
63 | - | ||
64 | # startup-notification | ||
65 | lf_cv_sane_realloc=yes | ||
66 | |||
67 | # libidl | ||
68 | libIDL_cv_long_long_format=${libIDL_cv_long_long_format=ll} | ||
69 | |||
70 | # ORBit2 | ||
71 | ac_cv_alignof_CORBA_boolean=1 | ||
72 | ac_cv_alignof_CORBA_char=1 | ||
73 | ac_cv_alignof_CORBA_double=4 | ||
74 | ac_cv_alignof_CORBA_float=4 | ||
75 | ac_cv_alignof_CORBA_long=4 | ||
76 | ac_cv_alignof_CORBA_long_double=4 | ||
77 | ac_cv_alignof_CORBA_long_long=4 | ||
78 | ac_cv_alignof_CORBA_octet=1 | ||
79 | ac_cv_alignof_CORBA_pointer=4 | ||
80 | ac_cv_alignof_CORBA_short=2 | ||
81 | ac_cv_alignof_CORBA_struct=4 | ||
82 | ac_cv_alignof_CORBA_wchar=2 | ||
83 | ac_cv_func_getaddrinfo=${ac_cv_func_getaddrinfo=yes} | ||
84 | |||
85 | # D-BUS | ||
86 | ac_cv_func_posix_getpwnam_r=${ac_cv_func_posix_getpwnam_r=yes} | ||
87 | |||
88 | # mysql | ||
89 | mysql_cv_func_atomic_sub=${mysql_cv_func_atomic_sub=yes} | ||
90 | mysql_cv_func_atomic_add=${mysql_cv_func_atomic_add=yes} | ||
91 | ac_cv_conv_longlong_to_float=${ac_cv_conv_longlong_to_float=yes} | ||
92 | |||
93 | ac_cv_path_ESD_CONFIG=no | ||
94 | #ac_cv_path_SDL_CONFIG=no | ||
95 | lf_cv_sane_realloc=yes | ||
96 | jm_cv_func_gettimeofday_clobber=no | ||
97 | samba_cv_HAVE_GETTIMEOFDAY_TZ=yes | ||
98 | bf_lsbf=1 | ||
99 | |||
100 | #ssh | ||
101 | ac_cv_have_space_d_name_in_struct_dirent=${ac_cv_dirent_have_space_d_name=yes} | ||
102 | ac_cv_have_broken_snprintf=${ac_cv_have_broken_snprintf=no} | ||
103 | ac_cv_have_accrights_in_msghdr=${ac_cv_have_accrights_in_msghdr=no} | ||
104 | ac_cv_have_control_in_msghdr=${ac_cv_have_control_in_msghdr=yes} | ||
105 | ac_cv_type_struct_timespec=${ac_cv_type_struct_timespec=yes} | ||
106 | ac_cv_have_openpty_ctty_bug=${ac_cv_have_openpty_ctty_bug=yes} | ||
107 | |||
108 | # guile | ||
109 | ac_cv_sys_restartable_syscalls=yes | ||
110 | ac_cv_uchar=${ac_cv_uchar=no} | ||
111 | ac_cv_uint=${ac_cv_uint=yes} | ||
112 | ac_cv_ulong=${ac_cv_ulong=yes} | ||
113 | ac_cv_ushort=${ac_cv_ushort=yes} | ||
114 | |||
115 | # samba | ||
116 | samba_cv_HAVE_GETTIMEOFDAY_TZ=${samba_cv_HAVE_GETTIMEOFDAY_TZ=yes} | ||
117 | |||
118 | # libxfce4util | ||
119 | with_broken_putenv=${with_broken_putenv=no} | ||
120 | |||
121 | # xffm | ||
122 | jm_cv_func_working_readdir=yes | ||
123 | |||
124 | # cvs | ||
125 | cvs_cv_func_printf_ptr=${cvs_cv_func_printf_ptr=yes} | ||
126 | |||
127 | # gettext | ||
128 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} | ||
129 | |||
130 | # intercom | ||
131 | ac_cv_func_fnmatch_works=yes | ||
diff --git a/meta/site/i586-linux b/meta/site/i586-linux deleted file mode 100644 index e5475cb680..0000000000 --- a/meta/site/i586-linux +++ /dev/null | |||
@@ -1,132 +0,0 @@ | |||
1 | dpkg_cv_va_copy=${ac_cv_va_copy=no} | ||
2 | dpkg_cv___va_copy=${ac_cv___va_copy=yes} | ||
3 | ac_cv_va_copy=${ac_cv_va_copy=no} | ||
4 | ac_cv_va_val_copy=${ac_cv_va_val_copy=yes} | ||
5 | ac_cv___va_copy=${ac_cv___va_copy=yes} | ||
6 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
7 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} | ||
8 | ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} | ||
9 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} | ||
10 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} | ||
11 | ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes} | ||
12 | ac_cv_func_malloc_works=${ac_cv_func_malloc_works=yes} | ||
13 | ac_cv_func_realloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes} | ||
14 | glib_cv_sane_realloc=${glib_cv_sane_realloc=yes} | ||
15 | ac_cv_func_pthread_key_delete=${ac_cv_func_pthread_key_delete=yes} | ||
16 | ac_cv_func_setpgrp_void=${ac_cv_func_setpgrp_void=yes} | ||
17 | ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no} | ||
18 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | ||
19 | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} | ||
20 | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} | ||
21 | ac_cv_linux_vers=${ac_cv_linux_vers=2} | ||
22 | ac_cv_sctp=${ac_cv_sctp=no} | ||
23 | ac_cv_sizeof_char=${ac_cv_sizeof_char=1} | ||
24 | ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_int=1} | ||
25 | ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4} | ||
26 | ac_cv_sizeof_unsigned_char_p=${ac_cv_sizeof_unsigned_char_p=4} | ||
27 | ac_cv_sizeof_int=${ac_cv_sizeof_int=4} | ||
28 | ac_cv_sizeof_unsigned_int=${ac_cv_sizeof_unsigned_int=4} | ||
29 | ac_cv_sizeof_long=${ac_cv_sizeof_long=4} | ||
30 | ac_cv_sizeof_unsigned_long=${ac_cv_sizeof_unsigned_long=4} | ||
31 | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} | ||
32 | ac_cv_sizeof_unsigned_long_long=${ac_cv_sizeof_unsigned_long_long=8} | ||
33 | ac_cv_sizeof_short=${ac_cv_sizeof_short=2} | ||
34 | ac_cv_sizeof_unsigned_short=${ac_cv_sizeof_unsigned_short=2} | ||
35 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} | ||
36 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} | ||
37 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4} | ||
38 | apr_cv_process_shared_works=${apr_cv_process_shared_works=no} | ||
39 | bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes} | ||
40 | db_cv_alignp_t=${db_cv_alignp_t='unsigned long'} | ||
41 | db_cv_align_t=${db_cv_align_t='unsigned long long'} | ||
42 | db_cv_fcntl_f_setfd=${db_cv_fcntl_f_setfd=yes} | ||
43 | db_cv_mutex=${db_cv_mutex=x86/gcc-assembly} | ||
44 | db_cv_path_ar=${db_cv_path_ar=/usr/bin/ar} | ||
45 | db_cv_path_chmod=${db_cv_path_chmod=/bin/chmod} | ||
46 | db_cv_path_cp=${db_cv_path_cp=/bin/cp} | ||
47 | db_cv_path_ln=${db_cv_path_ln=/bin/ln} | ||
48 | db_cv_path_mkdir=${db_cv_path_mkdir=/bin/mkdir} | ||
49 | db_cv_path_ranlib=${db_cv_path_ranlib=/usr/bin/ranlib} | ||
50 | db_cv_path_rm=${db_cv_path_rm=/bin/rm} | ||
51 | db_cv_path_sh=${db_cv_path_sh=/bin/sh} | ||
52 | db_cv_path_strip=${db_cv_path_strip=/usr/bin/strip} | ||
53 | db_cv_posixmutexes=${db_cv_posixmutexes=no} | ||
54 | db_cv_sprintf_count=${db_cv_sprintf_count=yes} | ||
55 | db_cv_uimutexes=${db_cv_uimutexes=no} | ||
56 | glib_cv_has__inline=${glib_cv_has__inline=yes} | ||
57 | glib_cv_has__inline__=${glib_cv_has__inline__=yes} | ||
58 | glib_cv_hasinline=${glib_cv_hasinline=yes} | ||
59 | glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24} | ||
60 | glib_cv_sys_pthread_cond_timedwait_posix=${glib_cv_sys_pthread_cond_timedwait_posix=yes} | ||
61 | glib_cv_sys_pthread_getspecific_posix=${glib_cv_sys_pthread_getspecific_posix=yes} | ||
62 | glib_cv_sys_pthread_mutex_trylock_posix=${glib_cv_sys_pthread_mutex_trylock_posix=yes} | ||
63 | glib_cv_uscore=${glib_cv_uscore=no} | ||
64 | glib_cv___va_copy=${glib_cv___va_copy=yes} | ||
65 | glib_cv_va_copy=${glib_cv_va_copy=yes} | ||
66 | glib_cv_va_val_copy=${glib_cv_va_val_copy=yes} | ||
67 | utils_cv_sys_open_max=${utils_cv_sys_open_max=1015} | ||
68 | |||
69 | # glib-2.0 | ||
70 | glib_cv_stack_grows=${glib_cv_stack_grows=no} | ||
71 | ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes} | ||
72 | glib_cv_use_pid_surrogate=${glib_cv_use_pid_surrogate=yes} | ||
73 | |||
74 | # jikes-native | ||
75 | ac_cv_sizeof_wchar_t=4 | ||
76 | |||
77 | # startup-notification | ||
78 | lf_cv_sane_realloc=yes | ||
79 | |||
80 | # libidl | ||
81 | libIDL_cv_long_long_format=${libIDL_cv_long_long_format=ll} | ||
82 | |||
83 | # ORBit2 | ||
84 | ac_cv_alignof_CORBA_boolean=1 | ||
85 | ac_cv_alignof_CORBA_char=1 | ||
86 | ac_cv_alignof_CORBA_double=4 | ||
87 | ac_cv_alignof_CORBA_float=4 | ||
88 | ac_cv_alignof_CORBA_long=4 | ||
89 | ac_cv_alignof_CORBA_long_double=4 | ||
90 | ac_cv_alignof_CORBA_long_long=4 | ||
91 | ac_cv_alignof_CORBA_octet=1 | ||
92 | ac_cv_alignof_CORBA_pointer=4 | ||
93 | ac_cv_alignof_CORBA_short=2 | ||
94 | ac_cv_alignof_CORBA_struct=4 | ||
95 | ac_cv_alignof_CORBA_wchar=2 | ||
96 | ac_cv_func_getaddrinfo=${ac_cv_func_getaddrinfo=yes} | ||
97 | |||
98 | # D-BUS | ||
99 | ac_cv_func_posix_getpwnam_r=${ac_cv_func_posix_getpwnam_r=yes} | ||
100 | |||
101 | # mysql | ||
102 | mysql_cv_func_atomic_sub=${mysql_cv_func_atomic_sub=yes} | ||
103 | mysql_cv_func_atomic_add=${mysql_cv_func_atomic_add=yes} | ||
104 | ac_cv_conv_longlong_to_float=${ac_cv_conv_longlong_to_float=yes} | ||
105 | |||
106 | ac_cv_sys_restartable_syscalls=yes | ||
107 | ac_cv_uchar=${ac_cv_uchar=no} | ||
108 | ac_cv_uint=${ac_cv_uint=yes} | ||
109 | ac_cv_ulong=${ac_cv_ulong=yes} | ||
110 | ac_cv_ushort=${ac_cv_ushort=yes} | ||
111 | |||
112 | # samba | ||
113 | samba_cv_HAVE_GETTIMEOFDAY_TZ=${samba_cv_HAVE_GETTIMEOFDAY_TZ=yes} | ||
114 | |||
115 | # gettext | ||
116 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} | ||
117 | |||
118 | # cvs | ||
119 | cvs_cv_func_printf_ptr=${cvs_cv_func_printf_ptr=yes} | ||
120 | |||
121 | # libxfce4util | ||
122 | with_broken_putenv=${with_broken_putenv=no} | ||
123 | |||
124 | # php | ||
125 | ac_cv_pread=${ac_cv_pread=no} | ||
126 | ac_cv_pwrite=${ac_cv_pwrite=no} | ||
127 | php_cv_lib_cookie_io_functions_use_off64_t=${php_cv_lib_cookie_io_functions_use_off64_t=yes} | ||
128 | |||
129 | # xffm | ||
130 | jm_cv_func_working_readdir=yes | ||
131 | |||
132 | ac_cv_sizeof_int_p=${ac_cv_sizeof_int_p=4} | ||
diff --git a/meta/site/i686-linux-uclibc b/meta/site/i686-linux-uclibc deleted file mode 100644 index 13289de687..0000000000 --- a/meta/site/i686-linux-uclibc +++ /dev/null | |||
@@ -1,192 +0,0 @@ | |||
1 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
2 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} | ||
3 | ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} | ||
4 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} | ||
5 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} | ||
6 | ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes} | ||
7 | ac_cv_func_pthread_key_delete=${ac_cv_func_pthread_key_delete=yes} | ||
8 | ac_cv_func_setpgrp_void=${ac_cv_func_setpgrp_void=yes} | ||
9 | ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no} | ||
10 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | ||
11 | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} | ||
12 | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} | ||
13 | ac_cv_linux_vers=${ac_cv_linux_vers=2} | ||
14 | ac_cv_sctp=${ac_cv_sctp=no} | ||
15 | ac_cv_sizeof_char=${ac_cv_sizeof_char=1} | ||
16 | ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4} | ||
17 | ac_cv_sizeof_int=${ac_cv_sizeof_int=4} | ||
18 | ac_cv_sizeof_long=${ac_cv_sizeof_long=4} | ||
19 | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} | ||
20 | ac_cv_sizeof_short=${ac_cv_sizeof_short=2} | ||
21 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} | ||
22 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} | ||
23 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4} | ||
24 | apr_cv_process_shared_works=${apr_cv_process_shared_works=no} | ||
25 | bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes} | ||
26 | db_cv_alignp_t=${db_cv_alignp_t='unsigned long'} | ||
27 | db_cv_align_t=${db_cv_align_t='unsigned long long'} | ||
28 | db_cv_fcntl_f_setfd=${db_cv_fcntl_f_setfd=yes} | ||
29 | db_cv_mutex=${db_cv_mutex=x86/gcc-assembly} | ||
30 | db_cv_path_ar=${db_cv_path_ar=/usr/bin/ar} | ||
31 | db_cv_path_chmod=${db_cv_path_chmod=/bin/chmod} | ||
32 | db_cv_path_cp=${db_cv_path_cp=/bin/cp} | ||
33 | db_cv_path_ln=${db_cv_path_ln=/bin/ln} | ||
34 | db_cv_path_mkdir=${db_cv_path_mkdir=/bin/mkdir} | ||
35 | db_cv_path_ranlib=${db_cv_path_ranlib=/usr/bin/ranlib} | ||
36 | db_cv_path_rm=${db_cv_path_rm=/bin/rm} | ||
37 | db_cv_path_sh=${db_cv_path_sh=/bin/sh} | ||
38 | db_cv_path_strip=${db_cv_path_strip=/usr/bin/strip} | ||
39 | db_cv_posixmutexes=${db_cv_posixmutexes=no} | ||
40 | db_cv_sprintf_count=${db_cv_sprintf_count=yes} | ||
41 | db_cv_uimutexes=${db_cv_uimutexes=no} | ||
42 | glib_cv_has__inline=${glib_cv_has__inline=yes} | ||
43 | glib_cv_has__inline__=${glib_cv_has__inline__=yes} | ||
44 | glib_cv_hasinline=${glib_cv_hasinline=yes} | ||
45 | glib_cv_sane_realloc=${glib_cv_sane_realloc=yes} | ||
46 | glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24} | ||
47 | glib_cv_sys_pthread_cond_timedwait_posix=${glib_cv_sys_pthread_cond_timedwait_posix=yes} | ||
48 | glib_cv_sys_pthread_getspecific_posix=${glib_cv_sys_pthread_getspecific_posix=yes} | ||
49 | glib_cv_sys_pthread_mutex_trylock_posix=${glib_cv_sys_pthread_mutex_trylock_posix=yes} | ||
50 | glib_cv_uscore=${glib_cv_uscore=no} | ||
51 | glib_cv___va_copy=${glib_cv___va_copy=yes} | ||
52 | glib_cv_va_copy=${glib_cv_va_copy=yes} | ||
53 | glib_cv_va_val_copy=${glib_cv_va_val_copy=yes} | ||
54 | utils_cv_sys_open_max=${utils_cv_sys_open_max=1015} | ||
55 | |||
56 | # glib-2.0 | ||
57 | glib_cv_stack_grows=${glib_cv_stack_grows=no} | ||
58 | ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes} | ||
59 | glib_cv_use_pid_surrogate=${glib_cv_use_pid_surrogate=yes} | ||
60 | |||
61 | # jikes-native | ||
62 | ac_cv_sizeof_wchar_t=4 | ||
63 | |||
64 | # startup-notification | ||
65 | lf_cv_sane_realloc=yes | ||
66 | |||
67 | # libidl | ||
68 | libIDL_cv_long_long_format=${libIDL_cv_long_long_format=ll} | ||
69 | |||
70 | # ORBit2 | ||
71 | ac_cv_alignof_CORBA_boolean=1 | ||
72 | ac_cv_alignof_CORBA_char=1 | ||
73 | ac_cv_alignof_CORBA_double=4 | ||
74 | ac_cv_alignof_CORBA_float=4 | ||
75 | ac_cv_alignof_CORBA_long=4 | ||
76 | ac_cv_alignof_CORBA_long_double=4 | ||
77 | ac_cv_alignof_CORBA_long_long=4 | ||
78 | ac_cv_alignof_CORBA_octet=1 | ||
79 | ac_cv_alignof_CORBA_pointer=4 | ||
80 | ac_cv_alignof_CORBA_short=2 | ||
81 | ac_cv_alignof_CORBA_struct=4 | ||
82 | ac_cv_alignof_CORBA_wchar=2 | ||
83 | ac_cv_func_getaddrinfo=${ac_cv_func_getaddrinfo=yes} | ||
84 | |||
85 | # D-BUS | ||
86 | ac_cv_func_posix_getpwnam_r=${ac_cv_func_posix_getpwnam_r=yes} | ||
87 | |||
88 | # mysql | ||
89 | mysql_cv_func_atomic_sub=${mysql_cv_func_atomic_sub=yes} | ||
90 | mysql_cv_func_atomic_add=${mysql_cv_func_atomic_add=yes} | ||
91 | ac_cv_conv_longlong_to_float=${ac_cv_conv_longlong_to_float=yes} | ||
92 | |||
93 | ac_cv_sys_restartable_syscalls=yes | ||
94 | ac_cv_uchar=${ac_cv_uchar=no} | ||
95 | ac_cv_uint=${ac_cv_uint=yes} | ||
96 | ac_cv_ulong=${ac_cv_ulong=yes} | ||
97 | ac_cv_ushort=${ac_cv_ushort=yes} | ||
98 | |||
99 | # samba | ||
100 | samba_cv_HAVE_GETTIMEOFDAY_TZ=${samba_cv_HAVE_GETTIMEOFDAY_TZ=yes} | ||
101 | |||
102 | # gettext | ||
103 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} | ||
104 | |||
105 | # cvs | ||
106 | cvs_cv_func_printf_ptr=${cvs_cv_func_printf_ptr=yes} | ||
107 | |||
108 | # bash | ||
109 | ac_cv_c_long_double=${ac_cv_c_long_double=yes} | ||
110 | bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes} | ||
111 | bash_cv_func_sigsetjmp=${bash_cv_func_sigsetjmp=missing} | ||
112 | bash_cv_must_reinstall_sighandlers=${bash_cv_must_reinstall_sighandlers=no} | ||
113 | bash_cv_func_strcoll_broken=${bash_cv_func_strcoll_broken=no} | ||
114 | bash_cv_under_sys_siglist=${bash_cv_under_sys_siglist=yes} | ||
115 | bash_cv_sys_siglist=${bash_cv_sys_siglist=yes} | ||
116 | bash_cv_dup2_broken=${bash_cv_dup2_broken=no} | ||
117 | bash_cv_opendir_not_robust=${bash_cv_opendir_not_robust=no} | ||
118 | bash_cv_type_rlimit=${bash_cv_type_rlimit=rlim_t} | ||
119 | bash_cv_getenv_redef=${bash_cv_getenv_redef=yes} | ||
120 | bash_cv_ulimit_maxfds=${bash_cv_ulimit_maxfds=yes} | ||
121 | bash_cv_getcwd_calls_popen=${bash_cv_getcwd_calls_popen=no} | ||
122 | bash_cv_printf_a_format=${bash_cv_printf_a_format=yes} | ||
123 | bash_cv_pgrp_pipe=${bash_cv_pgrp_pipe=no} | ||
124 | bash_cv_job_control_missing=${bash_cv_job_control_missing=present} | ||
125 | bash_cv_sys_named_pipes=${bash_cv_sys_named_pipes=present} | ||
126 | bash_cv_unusable_rtsigs=${bash_cv_unusable_rtsigs=no} | ||
127 | ac_cv_have_decl_sys_siglist=${ac_cv_have_decl_sys_siglist=yes} | ||
128 | |||
129 | # mono | ||
130 | cv_mono_sizeof_sunpath=108 | ||
131 | |||
132 | # mysql | ||
133 | mysql_cv_func_atomic_sub=${mysql_cv_func_atomic_sub=no} | ||
134 | mysql_cv_func_atomic_add=${mysql_cv_func_atomic_add=no} | ||
135 | ac_cv_conv_longlong_to_float=${ac_cv_conv_longlong_to_float=yes} | ||
136 | |||
137 | # gettext | ||
138 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} | ||
139 | |||
140 | # fnmatch | ||
141 | ac_cv_func_fnmatch_works=${ac_cv_func_fnmatch_works=yes} | ||
142 | |||
143 | # rsync | ||
144 | rsync_cv_HAVE_BROKEN_LARGEFILE=${rsync_cv_HAVE_BROKEN_LARGEFILE=no} | ||
145 | rsync_cv_HAVE_SOCKETPAIR=${rsync_cv_HAVE_SOCKETPAIR=yes} | ||
146 | rsync_cv_HAVE_LONGLONG=${rsync_cv_HAVE_LONGLONG=yes} | ||
147 | rsync_cv_HAVE_OFF64_T=${rsync_cv_HAVE_OFF64_T=no} | ||
148 | rsync_cv_HAVE_SHORT_INO_T=${rsync_cv_HAVE_SHORT_INO_T=no} | ||
149 | rsync_cv_HAVE_UNSIGNED_CHAR=${rsync_cv_HAVE_UNSIGNED_CHAR=no} | ||
150 | rsync_cv_HAVE_BROKEN_READDIR=${rsync_cv_HAVE_BROKEN_READDIR=no} | ||
151 | rsync_cv_HAVE_GETTIMEOFDAY_TZ=${rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes} | ||
152 | rsync_cv_HAVE_C99_VSNPRINTF=${rsync_cv_HAVE_C99_VSNPRINTF=yes} | ||
153 | rsync_cv_HAVE_SECURE_MKSTEMP=${rsync_cv_HAVE_SECURE_MKSTEMP=yes} | ||
154 | rsync_cv_REPLACE_INET_NTOA=${rsync_cv_REPLACE_INET_NTOA=no} | ||
155 | rsync_cv_REPLACE_INET_ATON=${rsync_cv_REPLACE_INET_ATON=no} | ||
156 | |||
157 | # sudo | ||
158 | sudo_cv_uid_t_len=${sudo_cv_uid_t_len=10} | ||
159 | |||
160 | # ipsec-tools | ||
161 | ac_cv_va_copy=${ac_cv_va_copy=no} | ||
162 | ac_cv_va_val_copy=${ac_cv_va_val_copy=yes} | ||
163 | ac_cv___va_copy=${ac_cv___va_copy=yes} | ||
164 | racoon_cv_bug_getaddrinfo=${racoon_cv_bug_getaddrinfo=no} | ||
165 | |||
166 | # screen | ||
167 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} | ||
168 | screen_cv_sys_memcpy_overlap=${screen_cv_sys_memcpy_overlap=no} | ||
169 | screen_cv_sys_memmove_overlap=${screen_cv_sys_memmove_overlap=no} | ||
170 | screen_cv_sys_fifo_broken_impl=${screen_cv_sys_fifo_broken_impl=yes} | ||
171 | screen_cv_sys_fifo_usable=${screen_cv_sys_fifo_usable=yes} | ||
172 | screen_cv_sys_select_broken_retval=${screen_cv_sys_select_broken_retval=no} | ||
173 | screen_cv_sys_sockets_nofs=${screen_cv_sys_sockets_nofs=no} | ||
174 | screen_cv_sys_sockets_usable=${screen_cv_sys_sockets_usable=yes} | ||
175 | screen_cv_sys_terminfo_used=${screen_cv_sys_terminfo_used=yes} | ||
176 | |||
177 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} | ||
178 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} | ||
179 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | ||
180 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} | ||
181 | |||
182 | # php | ||
183 | ac_cv_pread=${ac_cv_pread=no} | ||
184 | ac_cv_pwrite=${ac_cv_pwrite=no} | ||
185 | php_cv_lib_cookie_io_functions_use_off64_t=${php_cv_lib_cookie_io_functions_use_off64_t=yes} | ||
186 | |||
187 | # ssh | ||
188 | ac_cv_have_space_d_name_in_struct_dirent=${ac_cv_dirent_have_space_d_name=yes} | ||
189 | ac_cv_have_broken_snprintf=${ac_cv_have_broken_snprintf=no} | ||
190 | ac_cv_have_accrights_in_msghdr=${ac_cv_have_accrights_in_msghdr=no} | ||
191 | ac_cv_have_control_in_msghdr=${ac_cv_have_control_in_msghdr=yes} | ||
192 | ac_cv_have_openpty_ctty_bug=${ac_cv_have_openpty_ctty_bug=yes} | ||
diff --git a/meta/site/i686-linux b/meta/site/ix86-common index f5915e8e3a..6e6a2c96dd 100644 --- a/meta/site/i686-linux +++ b/meta/site/ix86-common | |||
@@ -1,29 +1,86 @@ | |||
1 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | 1 | ac_cv_sizeof_char=${ac_cv_sizeof_char=1} |
2 | ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_int=1} | ||
3 | ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4} | ||
4 | ac_cv_sizeof_unsigned_char_p=${ac_cv_sizeof_unsigned_char_p=4} | ||
5 | ac_cv_sizeof_int=${ac_cv_sizeof_int=4} | ||
6 | ac_cv_sizeof_unsigned_int=${ac_cv_sizeof_unsigned_int=4} | ||
7 | ac_cv_sizeof_int_p=${ac_cv_sizeof_int_p=4} | ||
8 | ac_cv_sizeof_long=${ac_cv_sizeof_long=4} | ||
9 | ac_cv_sizeof_unsigned_long=${ac_cv_sizeof_unsigned_long=4} | ||
10 | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} | ||
11 | ac_cv_sizeof_unsigned_long_long=${ac_cv_sizeof_unsigned_long_long=8} | ||
12 | ac_cv_sizeof_short=${ac_cv_sizeof_short=2} | ||
13 | ac_cv_sizeof_unsigned_short=${ac_cv_sizeof_unsigned_short=2} | ||
14 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} | ||
15 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} | ||
16 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4} | ||
17 | ac_cv_sizeof_float=${ac_cv_sizeof_float=4} | ||
18 | |||
2 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} | 19 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} |
3 | ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} | 20 | ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} |
4 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} | 21 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} |
5 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} | 22 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} |
6 | ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes} | 23 | ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes} |
24 | ac_cv_func_malloc_works=${ac_cv_func_malloc_works=yes} | ||
7 | ac_cv_func_pthread_key_delete=${ac_cv_func_pthread_key_delete=yes} | 25 | ac_cv_func_pthread_key_delete=${ac_cv_func_pthread_key_delete=yes} |
8 | ac_cv_func_setpgrp_void=${ac_cv_func_setpgrp_void=yes} | 26 | ac_cv_func_setpgrp_void=${ac_cv_func_setpgrp_void=yes} |
9 | ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no} | 27 | ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no} |
10 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | 28 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} |
29 | ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes} | ||
30 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} | ||
31 | |||
11 | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} | 32 | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} |
12 | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} | 33 | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} |
13 | ac_cv_linux_vers=${ac_cv_linux_vers=2} | 34 | ac_cv_linux_vers=${ac_cv_linux_vers=2} |
14 | ac_cv_sctp=${ac_cv_sctp=no} | 35 | ac_cv_sctp=${ac_cv_sctp=no} |
15 | ac_cv_sizeof_char=${ac_cv_sizeof_char=1} | 36 | |
16 | ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4} | ||
17 | ac_cv_sizeof_int=${ac_cv_sizeof_int=4} | ||
18 | ac_cv_sizeof_long=${ac_cv_sizeof_long=4} | ||
19 | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} | ||
20 | ac_cv_sizeof_short=${ac_cv_sizeof_short=2} | ||
21 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} | ||
22 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} | ||
23 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4} | ||
24 | ac_cv_sizeof_float=${ac_cv_sizeof_float=4} | ||
25 | apr_cv_process_shared_works=${apr_cv_process_shared_works=no} | 37 | apr_cv_process_shared_works=${apr_cv_process_shared_works=no} |
38 | |||
39 | ac_cv_path_ESD_CONFIG=no | ||
40 | lf_cv_sane_realloc=yes | ||
41 | jm_cv_func_gettimeofday_clobber=no | ||
42 | samba_cv_HAVE_GETTIMEOFDAY_TZ=yes | ||
43 | bf_lsbf=1 | ||
44 | ac_cv_sys_restartable_syscalls=yes | ||
45 | ac_cv_uchar=${ac_cv_uchar=no} | ||
46 | ac_cv_uint=${ac_cv_uint=yes} | ||
47 | ac_cv_ulong=${ac_cv_ulong=yes} | ||
48 | ac_cv_ushort=${ac_cv_ushort=yes} | ||
49 | |||
50 | # audacity | ||
51 | ac_cv_file_lib_src_libmad_frame_h=${ac_cv_file_lib_src_libmad_frame_h=no} | ||
52 | |||
53 | # bash | ||
54 | ac_cv_c_long_double=${ac_cv_c_long_double=yes} | ||
26 | bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes} | 55 | bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes} |
56 | bash_cv_func_sigsetjmp=${bash_cv_func_sigsetjmp=missing} | ||
57 | bash_cv_must_reinstall_sighandlers=${bash_cv_must_reinstall_sighandlers=no} | ||
58 | bash_cv_func_strcoll_broken=${bash_cv_func_strcoll_broken=no} | ||
59 | bash_cv_under_sys_siglist=${bash_cv_under_sys_siglist=yes} | ||
60 | bash_cv_sys_siglist=${bash_cv_sys_siglist=yes} | ||
61 | bash_cv_dup2_broken=${bash_cv_dup2_broken=no} | ||
62 | bash_cv_opendir_not_robust=${bash_cv_opendir_not_robust=no} | ||
63 | bash_cv_type_rlimit=${bash_cv_type_rlimit=rlim_t} | ||
64 | bash_cv_getenv_redef=${bash_cv_getenv_redef=yes} | ||
65 | bash_cv_ulimit_maxfds=${bash_cv_ulimit_maxfds=yes} | ||
66 | bash_cv_getcwd_calls_popen=${bash_cv_getcwd_calls_popen=no} | ||
67 | bash_cv_printf_a_format=${bash_cv_printf_a_format=yes} | ||
68 | bash_cv_pgrp_pipe=${bash_cv_pgrp_pipe=no} | ||
69 | bash_cv_job_control_missing=${bash_cv_job_control_missing=present} | ||
70 | bash_cv_sys_named_pipes=${bash_cv_sys_named_pipes=present} | ||
71 | bash_cv_unusable_rtsigs=${bash_cv_unusable_rtsigs=no} | ||
72 | ac_cv_have_decl_sys_siglist=${ac_cv_have_decl_sys_siglist=yes} | ||
73 | |||
74 | # clamav | ||
75 | clamav_av_func_working_snprintf_long=${clamav_av_func_working_snprintf_long=yes} | ||
76 | clamav_av_have_in_port_t=${clamav_av_have_in_port_t=yes} | ||
77 | clamav_av_have_in_addr_t=${clamav_av_have_in_addr_t=yes} | ||
78 | ac_cv_func_mmap_fixed_mapped=${ac_cv_func_mmap_fixed_mapped=yes} | ||
79 | |||
80 | # cvs | ||
81 | cvs_cv_func_printf_ptr=${cvs_cv_func_printf_ptr=yes} | ||
82 | |||
83 | # db | ||
27 | db_cv_alignp_t=${db_cv_alignp_t='unsigned long'} | 84 | db_cv_alignp_t=${db_cv_alignp_t='unsigned long'} |
28 | db_cv_align_t=${db_cv_align_t='unsigned long long'} | 85 | db_cv_align_t=${db_cv_align_t='unsigned long long'} |
29 | db_cv_fcntl_f_setfd=${db_cv_fcntl_f_setfd=yes} | 86 | db_cv_fcntl_f_setfd=${db_cv_fcntl_f_setfd=yes} |
@@ -40,6 +97,20 @@ db_cv_path_strip=${db_cv_path_strip=/usr/bin/strip} | |||
40 | db_cv_posixmutexes=${db_cv_posixmutexes=no} | 97 | db_cv_posixmutexes=${db_cv_posixmutexes=no} |
41 | db_cv_sprintf_count=${db_cv_sprintf_count=yes} | 98 | db_cv_sprintf_count=${db_cv_sprintf_count=yes} |
42 | db_cv_uimutexes=${db_cv_uimutexes=no} | 99 | db_cv_uimutexes=${db_cv_uimutexes=no} |
100 | |||
101 | # D-BUS | ||
102 | ac_cv_func_posix_getpwnam_r=${ac_cv_func_posix_getpwnam_r=yes} | ||
103 | |||
104 | dpkg_cv_va_copy=${ac_cv_va_copy=no} | ||
105 | dpkg_cv___va_copy=${ac_cv___va_copy=yes} | ||
106 | |||
107 | # ettercap | ||
108 | ettercap_cv_type_socklen_t=${ettercap_cv_type_socklen_t=yes} | ||
109 | |||
110 | # gettext | ||
111 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} | ||
112 | |||
113 | # glib | ||
43 | glib_cv_has__inline=${glib_cv_has__inline=yes} | 114 | glib_cv_has__inline=${glib_cv_has__inline=yes} |
44 | glib_cv_has__inline__=${glib_cv_has__inline__=yes} | 115 | glib_cv_has__inline__=${glib_cv_has__inline__=yes} |
45 | glib_cv_hasinline=${glib_cv_hasinline=yes} | 116 | glib_cv_hasinline=${glib_cv_hasinline=yes} |
@@ -52,22 +123,56 @@ glib_cv_uscore=${glib_cv_uscore=no} | |||
52 | glib_cv___va_copy=${glib_cv___va_copy=yes} | 123 | glib_cv___va_copy=${glib_cv___va_copy=yes} |
53 | glib_cv_va_copy=${glib_cv_va_copy=yes} | 124 | glib_cv_va_copy=${glib_cv_va_copy=yes} |
54 | glib_cv_va_val_copy=${glib_cv_va_val_copy=yes} | 125 | glib_cv_va_val_copy=${glib_cv_va_val_copy=yes} |
55 | utils_cv_sys_open_max=${utils_cv_sys_open_max=1015} | 126 | glib_cv_rtldglobal_broken=${glib_cv_rtldglobal_broken=yes} |
56 | 127 | ||
57 | # glib-2.0 | 128 | # glib-2.0 |
58 | glib_cv_stack_grows=${glib_cv_stack_grows=no} | 129 | glib_cv_stack_grows=${glib_cv_stack_grows=no} |
130 | utils_cv_sys_open_max=${utils_cv_sys_open_max=1015} | ||
59 | ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes} | 131 | ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes} |
60 | glib_cv_use_pid_surrogate=${glib_cv_use_pid_surrogate=yes} | 132 | glib_cv_use_pid_surrogate=${glib_cv_use_pid_surrogate=yes} |
61 | 133 | ||
134 | # guile | ||
135 | ac_cv_sys_restartable_syscalls=yes | ||
136 | ac_cv_uchar=${ac_cv_uchar=no} | ||
137 | ac_cv_uint=${ac_cv_uint=yes} | ||
138 | ac_cv_ulong=${ac_cv_ulong=yes} | ||
139 | ac_cv_ushort=${ac_cv_ushort=yes} | ||
140 | |||
141 | # intercom | ||
142 | ac_cv_func_fnmatch_works=${ac_cv_func_fnmatch_works=yes} | ||
143 | |||
144 | # ipsec-tools | ||
145 | ac_cv_va_copy=${ac_cv_va_copy=no} | ||
146 | ac_cv___va_copy=${ac_cv___va_copy=yes} | ||
147 | ac_cv_va_val_copy=${ac_cv_va_val_copy=yes} | ||
148 | racoon_cv_bug_getaddrinfo=${racoon_cv_bug_getaddrinfo=no} | ||
149 | |||
62 | # jikes-native | 150 | # jikes-native |
63 | ac_cv_sizeof_wchar_t=4 | 151 | ac_cv_sizeof_wchar_t=4 |
64 | 152 | ||
65 | # startup-notification | 153 | # lftp |
66 | lf_cv_sane_realloc=yes | 154 | ac_cv_need_trio=${ac_cv_need_trio=no} |
155 | lftp_cv_va_copy=${lftp_cv_va_copy=no} | ||
156 | lftp_cv___va_copy=${lftp_cv___va_copy=yes} | ||
67 | 157 | ||
68 | # libidl | 158 | # libidl |
69 | libIDL_cv_long_long_format=${libIDL_cv_long_long_format=ll} | 159 | libIDL_cv_long_long_format=${libIDL_cv_long_long_format=ll} |
70 | 160 | ||
161 | # libnet | ||
162 | ac_cv_lbl_unaligned_fail=${ac_cv_lbl_unaligned_fail=no} | ||
163 | ac_libnet_have_packet_socket=${ac_libnet_have_packet_socket=yes} | ||
164 | |||
165 | # libxfce4util | ||
166 | with_broken_putenv=${with_broken_putenv=no} | ||
167 | |||
168 | # mono | ||
169 | cv_mono_sizeof_sunpath=108 | ||
170 | |||
171 | # mysql | ||
172 | mysql_cv_func_atomic_sub=${mysql_cv_func_atomic_sub=yes} | ||
173 | mysql_cv_func_atomic_add=${mysql_cv_func_atomic_add=yes} | ||
174 | ac_cv_conv_longlong_to_float=${ac_cv_conv_longlong_to_float=yes} | ||
175 | |||
71 | # ORBit2 | 176 | # ORBit2 |
72 | ac_cv_alignof_CORBA_boolean=1 | 177 | ac_cv_alignof_CORBA_boolean=1 |
73 | ac_cv_alignof_CORBA_char=1 | 178 | ac_cv_alignof_CORBA_char=1 |
@@ -83,63 +188,16 @@ ac_cv_alignof_CORBA_struct=4 | |||
83 | ac_cv_alignof_CORBA_wchar=2 | 188 | ac_cv_alignof_CORBA_wchar=2 |
84 | ac_cv_func_getaddrinfo=${ac_cv_func_getaddrinfo=yes} | 189 | ac_cv_func_getaddrinfo=${ac_cv_func_getaddrinfo=yes} |
85 | 190 | ||
86 | # D-BUS | 191 | # p3scan |
87 | ac_cv_func_posix_getpwnam_r=${ac_cv_func_posix_getpwnam_r=yes} | 192 | ac_cv_func_realloc_0_nonnull=${ac_cv_func_realloc_0_nonnull=yes} |
88 | |||
89 | # mysql | ||
90 | mysql_cv_func_atomic_sub=${mysql_cv_func_atomic_sub=yes} | ||
91 | mysql_cv_func_atomic_add=${mysql_cv_func_atomic_add=yes} | ||
92 | ac_cv_conv_longlong_to_float=${ac_cv_conv_longlong_to_float=yes} | ||
93 | |||
94 | ac_cv_sys_restartable_syscalls=yes | ||
95 | ac_cv_uchar=${ac_cv_uchar=no} | ||
96 | ac_cv_uint=${ac_cv_uint=yes} | ||
97 | ac_cv_ulong=${ac_cv_ulong=yes} | ||
98 | ac_cv_ushort=${ac_cv_ushort=yes} | ||
99 | |||
100 | # samba | ||
101 | samba_cv_HAVE_GETTIMEOFDAY_TZ=${samba_cv_HAVE_GETTIMEOFDAY_TZ=yes} | ||
102 | |||
103 | # gettext | ||
104 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} | ||
105 | |||
106 | # cvs | ||
107 | cvs_cv_func_printf_ptr=${cvs_cv_func_printf_ptr=yes} | ||
108 | |||
109 | # bash | ||
110 | ac_cv_c_long_double=${ac_cv_c_long_double=yes} | ||
111 | bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes} | ||
112 | bash_cv_func_sigsetjmp=${bash_cv_func_sigsetjmp=missing} | ||
113 | bash_cv_must_reinstall_sighandlers=${bash_cv_must_reinstall_sighandlers=no} | ||
114 | bash_cv_func_strcoll_broken=${bash_cv_func_strcoll_broken=no} | ||
115 | bash_cv_under_sys_siglist=${bash_cv_under_sys_siglist=yes} | ||
116 | bash_cv_sys_siglist=${bash_cv_sys_siglist=yes} | ||
117 | bash_cv_dup2_broken=${bash_cv_dup2_broken=no} | ||
118 | bash_cv_opendir_not_robust=${bash_cv_opendir_not_robust=no} | ||
119 | bash_cv_type_rlimit=${bash_cv_type_rlimit=rlim_t} | ||
120 | bash_cv_getenv_redef=${bash_cv_getenv_redef=yes} | ||
121 | bash_cv_ulimit_maxfds=${bash_cv_ulimit_maxfds=yes} | ||
122 | bash_cv_getcwd_calls_popen=${bash_cv_getcwd_calls_popen=no} | ||
123 | bash_cv_printf_a_format=${bash_cv_printf_a_format=yes} | ||
124 | bash_cv_pgrp_pipe=${bash_cv_pgrp_pipe=no} | ||
125 | bash_cv_job_control_missing=${bash_cv_job_control_missing=present} | ||
126 | bash_cv_sys_named_pipes=${bash_cv_sys_named_pipes=present} | ||
127 | bash_cv_unusable_rtsigs=${bash_cv_unusable_rtsigs=no} | ||
128 | ac_cv_have_decl_sys_siglist=${ac_cv_have_decl_sys_siglist=yes} | ||
129 | |||
130 | # mono | ||
131 | cv_mono_sizeof_sunpath=108 | ||
132 | |||
133 | # mysql | ||
134 | mysql_cv_func_atomic_sub=${mysql_cv_func_atomic_sub=no} | ||
135 | mysql_cv_func_atomic_add=${mysql_cv_func_atomic_add=no} | ||
136 | ac_cv_conv_longlong_to_float=${ac_cv_conv_longlong_to_float=yes} | ||
137 | 193 | ||
138 | # gettext | 194 | # php |
139 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} | 195 | ac_cv_pread=${ac_cv_pread=no} |
196 | ac_cv_pwrite=${ac_cv_pwrite=no} | ||
197 | php_cv_lib_cookie_io_functions_use_off64_t=${php_cv_lib_cookie_io_functions_use_off64_t=yes} | ||
140 | 198 | ||
141 | # fnmatch | 199 | # rp-pppoe |
142 | ac_cv_func_fnmatch_works=${ac_cv_func_fnmatch_works=yes} | 200 | rpppoe_cv_pack_bitfields=${rpppoe_cv_pack_bitfields=rev} |
143 | 201 | ||
144 | # rsync | 202 | # rsync |
145 | rsync_cv_HAVE_BROKEN_LARGEFILE=${rsync_cv_HAVE_BROKEN_LARGEFILE=no} | 203 | rsync_cv_HAVE_BROKEN_LARGEFILE=${rsync_cv_HAVE_BROKEN_LARGEFILE=no} |
@@ -155,14 +213,8 @@ rsync_cv_HAVE_SECURE_MKSTEMP=${rsync_cv_HAVE_SECURE_MKSTEMP=yes} | |||
155 | rsync_cv_REPLACE_INET_NTOA=${rsync_cv_REPLACE_INET_NTOA=no} | 213 | rsync_cv_REPLACE_INET_NTOA=${rsync_cv_REPLACE_INET_NTOA=no} |
156 | rsync_cv_REPLACE_INET_ATON=${rsync_cv_REPLACE_INET_ATON=no} | 214 | rsync_cv_REPLACE_INET_ATON=${rsync_cv_REPLACE_INET_ATON=no} |
157 | 215 | ||
158 | # sudo | 216 | # samba |
159 | sudo_cv_uid_t_len=${sudo_cv_uid_t_len=10} | 217 | samba_cv_HAVE_GETTIMEOFDAY_TZ=${samba_cv_HAVE_GETTIMEOFDAY_TZ=yes} |
160 | |||
161 | # ipsec-tools | ||
162 | ac_cv_va_copy=${ac_cv_va_copy=no} | ||
163 | ac_cv_va_val_copy=${ac_cv_va_val_copy=yes} | ||
164 | ac_cv___va_copy=${ac_cv___va_copy=yes} | ||
165 | racoon_cv_bug_getaddrinfo=${racoon_cv_bug_getaddrinfo=no} | ||
166 | 218 | ||
167 | # screen | 219 | # screen |
168 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} | 220 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} |
@@ -175,25 +227,28 @@ screen_cv_sys_sockets_nofs=${screen_cv_sys_sockets_nofs=no} | |||
175 | screen_cv_sys_sockets_usable=${screen_cv_sys_sockets_usable=yes} | 227 | screen_cv_sys_sockets_usable=${screen_cv_sys_sockets_usable=yes} |
176 | screen_cv_sys_terminfo_used=${screen_cv_sys_terminfo_used=yes} | 228 | screen_cv_sys_terminfo_used=${screen_cv_sys_terminfo_used=yes} |
177 | 229 | ||
178 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} | 230 | # slrn |
179 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} | 231 | slrn_cv___va_copy=${slrn_cv___va_copy=yes} |
180 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | 232 | slrn_cv_va_copy=${slrn_cv_va_copy=no} |
181 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} | 233 | slrn_cv_va_val_copy=${slrn_cv_va_val_copy=yes} |
182 | |||
183 | # php | ||
184 | ac_cv_pread=${ac_cv_pread=no} | ||
185 | ac_cv_pwrite=${ac_cv_pwrite=no} | ||
186 | php_cv_lib_cookie_io_functions_use_off64_t=${php_cv_lib_cookie_io_functions_use_off64_t=yes} | ||
187 | 234 | ||
188 | # ssh | 235 | # ssh |
189 | ac_cv_have_space_d_name_in_struct_dirent=${ac_cv_dirent_have_space_d_name=yes} | 236 | ac_cv_have_space_d_name_in_struct_dirent=${ac_cv_dirent_have_space_d_name=yes} |
190 | ac_cv_have_broken_snprintf=${ac_cv_have_broken_snprintf=no} | 237 | ac_cv_have_broken_snprintf=${ac_cv_have_broken_snprintf=no} |
191 | ac_cv_have_accrights_in_msghdr=${ac_cv_have_accrights_in_msghdr=no} | 238 | ac_cv_have_accrights_in_msghdr=${ac_cv_have_accrights_in_msghdr=no} |
192 | ac_cv_have_control_in_msghdr=${ac_cv_have_control_in_msghdr=yes} | 239 | ac_cv_have_control_in_msghdr=${ac_cv_have_control_in_msghdr=yes} |
240 | ac_cv_type_struct_timespec=${ac_cv_type_struct_timespec=yes} | ||
193 | ac_cv_have_openpty_ctty_bug=${ac_cv_have_openpty_ctty_bug=yes} | 241 | ac_cv_have_openpty_ctty_bug=${ac_cv_have_openpty_ctty_bug=yes} |
194 | 242 | ||
195 | # libxfce4util | 243 | # startup-notification |
196 | with_broken_putenv=${with_broken_putenv=no} | 244 | lf_cv_sane_realloc=yes |
245 | |||
246 | # sudo | ||
247 | sudo_cv_uid_t_len=${sudo_cv_uid_t_len=10} | ||
197 | 248 | ||
198 | # xffm | 249 | # xffm |
199 | jm_cv_func_working_readdir=yes | 250 | jm_cv_func_working_readdir=yes |
251 | |||
252 | # xorg X11R7 | ||
253 | ac_cv_sys_linker_h=${ac_cv_sys_linker_h=no} | ||
254 | ac_cv_file__usr_share_X11_sgml_defs_ent=${ac_cv_file__usr_share_X11_sgml_defs_ent=no} | ||
diff --git a/meta/site/mipsel-linux b/meta/site/mipsel-linux index fe0ee88c52..3412c112ed 100644 --- a/meta/site/mipsel-linux +++ b/meta/site/mipsel-linux | |||
@@ -1,5 +1,3 @@ | |||
1 | ac_cv_c_littleendian=${ac_cv_c_littleendian=yes} | ||
2 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
3 | 1 | ||
4 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} | 2 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} |
5 | ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no} | 3 | ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no} |
@@ -114,3 +112,6 @@ sudo_cv_uid_t_len=${sudo_cv_uid_t_len=10} | |||
114 | 112 | ||
115 | #intercom | 113 | #intercom |
116 | ac_cv_func_fnmatch_works=${ac_cv_func_fnmatch_works=yes} | 114 | ac_cv_func_fnmatch_works=${ac_cv_func_fnmatch_works=yes} |
115 | |||
116 | #lmbench | ||
117 | ac_cv_uint=${ac_cv_unit=yes} | ||
diff --git a/meta/site/mipsel-linux-uclibc b/meta/site/mipsel-linux-uclibc index cdf6fc5cf3..8ac42316dd 100644 --- a/meta/site/mipsel-linux-uclibc +++ b/meta/site/mipsel-linux-uclibc | |||
@@ -1,5 +1,3 @@ | |||
1 | ac_cv_c_littleendian=${ac_cv_c_littleendian=yes} | ||
2 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
3 | 1 | ||
4 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} | 2 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} |
5 | ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no} | 3 | ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no} |
@@ -134,3 +132,6 @@ samba_cv_sysquotas_file=${samba_cv_sysquotas_file=lib/sysquotas_4A.c} | |||
134 | # This cached value needs a local patch to pick it up, upstream 3.0.14a | 132 | # This cached value needs a local patch to pick it up, upstream 3.0.14a |
135 | # doesn't cache it. | 133 | # doesn't cache it. |
136 | samba_cv_LINUX_LFS_SUPPORT=${samba_cv_LINUX_LFS_SUPPORT=yes} | 134 | samba_cv_LINUX_LFS_SUPPORT=${samba_cv_LINUX_LFS_SUPPORT=yes} |
135 | |||
136 | # rp-pppoe | ||
137 | rpppoe_cv_pack_bitfields=${rpppoe_cv_pack_bitfields=rev} | ||
diff --git a/meta/site/powerpc-linux b/meta/site/powerpc-linux index 806c011f64..a80866dbd0 100644 --- a/meta/site/powerpc-linux +++ b/meta/site/powerpc-linux | |||
@@ -28,8 +28,6 @@ ac_cv_ushort=${ac_cv_ushort=yes} | |||
28 | 28 | ||
29 | mr_cv_target_elf=${mr_cv_target_elf=yes} | 29 | mr_cv_target_elf=${mr_cv_target_elf=yes} |
30 | 30 | ||
31 | ac_cv_c_littleendian=${ac_cv_c_littleendian=no} | ||
32 | ac_cv_c_bigendian=${ac_cv_c_bigendian=yes} | ||
33 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} | 31 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} |
34 | cookie_io_functions_use_off64_t=${cookie_io_functions_use_off64_t=yes} | 32 | cookie_io_functions_use_off64_t=${cookie_io_functions_use_off64_t=yes} |
35 | 33 | ||
@@ -65,6 +63,7 @@ nano_cv_func_regexec_segv_emptystr=${nano_cv_func_regexec_segv_emptystr=no} | |||
65 | 63 | ||
66 | # libnet | 64 | # libnet |
67 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=big} | 65 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=big} |
66 | ac_libnet_have_packet_socket=${ac_libnet_have_packet_socket=yes} | ||
68 | 67 | ||
69 | # screen | 68 | # screen |
70 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} | 69 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} |
diff --git a/meta/site/sh4-linux b/meta/site/sh-common index 1e5fb38479..da34d36015 100644 --- a/meta/site/sh4-linux +++ b/meta/site/sh-common | |||
@@ -21,6 +21,9 @@ ac_cv_sizeof_unsigned_long=${ac_cv_sizeof_unsigned_long=4} | |||
21 | ac_cv_sizeof_unsigned_long_long=${ac_cv_sizeof_unsigned_long_long=8} | 21 | ac_cv_sizeof_unsigned_long_long=${ac_cv_sizeof_unsigned_long_long=8} |
22 | ac_cv_sizeof_signed_char=${ac_cv_sizeof_signed_char=1} | 22 | ac_cv_sizeof_signed_char=${ac_cv_sizeof_signed_char=1} |
23 | 23 | ||
24 | # lzo | ||
25 | ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4} | ||
26 | |||
24 | ac_cv_sys_restartable_syscalls=yes | 27 | ac_cv_sys_restartable_syscalls=yes |
25 | ac_cv_uchar=${ac_cv_uchar=no} | 28 | ac_cv_uchar=${ac_cv_uchar=no} |
26 | ac_cv_uint=${ac_cv_uint=yes} | 29 | ac_cv_uint=${ac_cv_uint=yes} |
@@ -29,8 +32,6 @@ ac_cv_ushort=${ac_cv_ushort=yes} | |||
29 | 32 | ||
30 | mr_cv_target_elf=${mr_cv_target_elf=yes} | 33 | mr_cv_target_elf=${mr_cv_target_elf=yes} |
31 | 34 | ||
32 | ac_cv_c_littleendian=${ac_cv_c_littleendian=yes} | ||
33 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
34 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} | 35 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} |
35 | 36 | ||
36 | # apache | 37 | # apache |
@@ -59,9 +60,6 @@ ac_cv_linux_vers=${ac_cv_linux_vers=2} | |||
59 | ac_cv_regexec_segfault_emptystr=${ac_cv_regexec_segfault_emptystr=no} | 60 | ac_cv_regexec_segfault_emptystr=${ac_cv_regexec_segfault_emptystr=no} |
60 | nano_cv_func_regexec_segv_emptystr=${nano_cv_func_regexec_segv_emptystr=no} | 61 | nano_cv_func_regexec_segv_emptystr=${nano_cv_func_regexec_segv_emptystr=no} |
61 | 62 | ||
62 | # libnet | ||
63 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=lil} | ||
64 | |||
65 | # screen | 63 | # screen |
66 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} | 64 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} |
67 | screen_cv_sys_memcpy_overlap=${screen_cv_sys_memcpy_overlap=no} | 65 | screen_cv_sys_memcpy_overlap=${screen_cv_sys_memcpy_overlap=no} |
@@ -254,10 +252,8 @@ mysql_cv_func_atomic_sub=${mysql_cv_func_atomic_sub=no} | |||
254 | mysql_cv_func_atomic_add=${mysql_cv_func_atomic_add=no} | 252 | mysql_cv_func_atomic_add=${mysql_cv_func_atomic_add=no} |
255 | ac_cv_conv_longlong_to_float=${ac_cv_conv_longlong_to_float=yes} | 253 | ac_cv_conv_longlong_to_float=${ac_cv_conv_longlong_to_float=yes} |
256 | 254 | ||
257 | # minicom | 255 | # rp-pppoe |
258 | ac_cv_header_getopt_h=${ac_cv_header_getopt_h=xno} | 256 | rpppoe_cv_pack_bitfields=${rpppoe_cv_pack_bitfields=rev} |
259 | ac_cv_func_getopt_long=${ac_cv_func_getopt_long=xno} | ||
260 | am_cv_sys_posix_termios=${ac_cv_sys_posix_termios=yes} | ||
261 | 257 | ||
262 | # gettext | 258 | # gettext |
263 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} | 259 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} |
@@ -287,3 +283,17 @@ ac_cv_va_copy=${ac_cv_va_copy=no} | |||
287 | ac_cv_va_val_copy=${ac_cv_va_val_copy=yes} | 283 | ac_cv_va_val_copy=${ac_cv_va_val_copy=yes} |
288 | ac_cv___va_copy=${ac_cv___va_copy=yes} | 284 | ac_cv___va_copy=${ac_cv___va_copy=yes} |
289 | racoon_cv_bug_getaddrinfo=${racoon_cv_bug_getaddrinfo=no} | 285 | racoon_cv_bug_getaddrinfo=${racoon_cv_bug_getaddrinfo=no} |
286 | |||
287 | # libxfce4util | ||
288 | with_broken_putenv=${with_broken_putenv=no} | ||
289 | |||
290 | # clamav | ||
291 | clamav_av_func_working_snprintf_long=${clamav_av_func_working_snprintf_long=yes} | ||
292 | clamav_av_have_in_port_t=${clamav_av_have_in_port_t=yes} | ||
293 | clamav_av_have_in_addr_t=${clamav_av_have_in_addr_t=yes} | ||
294 | ac_cv_func_mmap_fixed_mapped=${ac_cv_func_mmap_fixed_mapped=yes} | ||
295 | |||
296 | # libnet | ||
297 | ac_cv_lbl_unaligned_fail=${ac_cv_lbl_unaligned_fail=no} | ||
298 | ac_libnet_have_packet_socket=${ac_libnet_have_packet_socket=yes} | ||
299 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=lil} | ||
diff --git a/meta/site/sh3-linux b/meta/site/sh3-linux deleted file mode 100644 index 8e0b89812d..0000000000 --- a/meta/site/sh3-linux +++ /dev/null | |||
@@ -1,360 +0,0 @@ | |||
1 | ac_cv_func_setpgrp_void=yes | ||
2 | ac_cv_func_setgrent_void=yes | ||
3 | ac_cv_func_malloc_0_nonnull=yes | ||
4 | ac_cv_func_malloc_works=yes | ||
5 | ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes} | ||
6 | ac_cv_func_setvbuf_reversed=no | ||
7 | ac_cv_sizeof___int64=${ac_cv_sizeof___int64=0} | ||
8 | ac_cv_sizeof_char=${ac_cv_sizeof_char=1} | ||
9 | ac_cv_sizeof_int=${ac_cv_sizeof_int=4} | ||
10 | ac_cv_sizeof_long=${ac_cv_sizeof_long=4} | ||
11 | ac_cv_sizeof_long_int=${ac_cv_sizeof_long_int=4} | ||
12 | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} | ||
13 | ac_cv_sizeof_short=${ac_cv_sizeof_short=2} | ||
14 | ac_cv_sizeof_short_int=${ac_cv_sizeof_short_int=2} | ||
15 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} | ||
16 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4} | ||
17 | ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=8} | ||
18 | ac_cv_sizeof_unsigned_short=${ac_cv_sizeof_unsigned_short=2} | ||
19 | ac_cv_sizeof_unsigned_int=${ac_cv_sizeof_unsigned_int=4} | ||
20 | ac_cv_sizeof_unsigned_long=${ac_cv_sizeof_unsigned_long=4} | ||
21 | ac_cv_sizeof_unsigned_long_long=${ac_cv_sizeof_unsigned_long_long=8} | ||
22 | ac_cv_sizeof_signed_char=${ac_cv_sizeof_signed_char=1} | ||
23 | |||
24 | ac_cv_sys_restartable_syscalls=yes | ||
25 | ac_cv_uchar=${ac_cv_uchar=no} | ||
26 | ac_cv_uint=${ac_cv_uint=yes} | ||
27 | ac_cv_ulong=${ac_cv_ulong=yes} | ||
28 | ac_cv_ushort=${ac_cv_ushort=yes} | ||
29 | |||
30 | mr_cv_target_elf=${mr_cv_target_elf=yes} | ||
31 | |||
32 | ac_cv_c_littleendian=${ac_cv_c_littleendian=yes} | ||
33 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
34 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} | ||
35 | |||
36 | |||
37 | # strace | ||
38 | ac_cv_host=${ac_cv_host=sh-pc-linux-gnu} | ||
39 | |||
40 | # apache | ||
41 | ac_cv_func_pthread_key_delete=${ac_cv_func_pthread_key_delete=yes} | ||
42 | apr_cv_process_shared_works=${apr_cv_process_shared_works=no} | ||
43 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} | ||
44 | |||
45 | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} | ||
46 | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} | ||
47 | ac_cv_sctp=${ac_cv_sctp=no} | ||
48 | |||
49 | # ssh | ||
50 | ac_cv_have_space_d_name_in_struct_dirent=${ac_cv_dirent_have_space_d_name=yes} | ||
51 | ac_cv_have_broken_snprintf=${ac_cv_have_broken_snprintf=no} | ||
52 | ac_cv_have_accrights_in_msghdr=${ac_cv_have_accrights_in_msghdr=no} | ||
53 | ac_cv_have_control_in_msghdr=${ac_cv_have_control_in_msghdr=yes} | ||
54 | ac_cv_have_openpty_ctty_bug=${ac_cv_have_openpty_ctty_bug=yes} | ||
55 | |||
56 | # coreutils | ||
57 | utils_cv_sys_open_max=${utils_cv_sys_open_max=1019} | ||
58 | |||
59 | # libpcap | ||
60 | ac_cv_linux_vers=${ac_cv_linux_vers=2} | ||
61 | |||
62 | # nano | ||
63 | ac_cv_regexec_segfault_emptystr=${ac_cv_regexec_segfault_emptystr=no} | ||
64 | nano_cv_func_regexec_segv_emptystr=${nano_cv_func_regexec_segv_emptystr=no} | ||
65 | |||
66 | # libnet | ||
67 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=lil} | ||
68 | |||
69 | # screen | ||
70 | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no} | ||
71 | screen_cv_sys_memcpy_overlap=${screen_cv_sys_memcpy_overlap=no} | ||
72 | screen_cv_sys_memmove_overlap=${screen_cv_sys_memmove_overlap=no} | ||
73 | screen_cv_sys_fifo_broken_impl=${screen_cv_sys_fifo_broken_impl=yes} | ||
74 | screen_cv_sys_fifo_usable=${screen_cv_sys_fifo_usable=yes} | ||
75 | screen_cv_sys_select_broken_retval=${screen_cv_sys_select_broken_retval=no} | ||
76 | screen_cv_sys_sockets_nofs=${screen_cv_sys_sockets_nofs=no} | ||
77 | screen_cv_sys_sockets_usable=${screen_cv_sys_sockets_usable=yes} | ||
78 | screen_cv_sys_terminfo_used=${screen_cv_sys_terminfo_used=yes} | ||
79 | |||
80 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} | ||
81 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} | ||
82 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | ||
83 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} | ||
84 | |||
85 | # socat | ||
86 | ac_cv_ispeed_offset=${ac_cv_ispeed_offset=13} | ||
87 | sc_cv_termios_ispeed=${sc_cv_termios_ispeed=yes} | ||
88 | |||
89 | # links | ||
90 | ac_cv_lib_png_png_create_info_struct=${ac_cv_lib_png_png_create_info_struct=yes} | ||
91 | |||
92 | # samba | ||
93 | samba_cv_BROKEN_NISPLUS_INCLUDE_FILES=${samba_cv_BROKEN_NISPLUS_INCLUDE_FILES=yes} | ||
94 | samba_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS=${samba_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS=no} | ||
95 | samba_cv_FTRUNCATE_NEEDS_ROOT=${samba_cv_FTRUNCATE_NEEDS_ROOT=no} | ||
96 | samba_cv_HAVE_BROKEN_FCNTL64_LOCKS=${samba_cv_HAVE_BROKEN_FCNTL64_LOCKS=no} | ||
97 | samba_cv_HAVE_BROKEN_GETGROUPS=${samba_cv_HAVE_BROKEN_GETGROUPS=no} | ||
98 | samba_cv_HAVE_BROKEN_LINUX_SENDFILE=${samba_cv_HAVE_BROKEN_LINUX_SENDFILE=yes} | ||
99 | samba_cv_HAVE_BROKEN_READDIR=${samba_cv_HAVE_BROKEN_READDIR=no} | ||
100 | samba_cv_HAVE_C99_VSNPRINTF=${samba_cv_HAVE_C99_VSNPRINTF=yes} | ||
101 | samba_cv_HAVE_DEV64_T=${samba_cv_HAVE_DEV64_T=no} | ||
102 | samba_cv_HAVE_DEVICE_MAJOR_FN=${samba_cv_HAVE_DEVICE_MAJOR_FN=yes} | ||
103 | samba_cv_HAVE_DEVICE_MINOR_FN=${samba_cv_HAVE_DEVICE_MINOR_FN=yes} | ||
104 | samba_cv_HAVE_DQB_FSOFTLIMIT=${samba_cv_HAVE_DQB_FSOFTLIMIT=no} | ||
105 | samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT=${samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT=yes} | ||
106 | samba_cv_HAVE_FCNTL_LOCK=${samba_cv_HAVE_FCNTL_LOCK=yes} | ||
107 | samba_cv_HAVE_FTRUNCATE_EXTEND=${samba_cv_HAVE_FTRUNCATE_EXTEND=yes} | ||
108 | samba_cv_HAVE_FUNCTION_MACRO=${samba_cv_HAVE_FUNCTION_MACRO=yes} | ||
109 | samba_cv_HAVE_GETTIMEOFDAY_TZ=${samba_cv_HAVE_GETTIMEOFDAY_TZ=yes} | ||
110 | samba_cv_HAVE_IFACE_AIX=${samba_cv_HAVE_IFACE_AIX=no} | ||
111 | samba_cv_HAVE_IFACE_IFCONF=${samba_cv_HAVE_IFACE_IFCONF=yes} | ||
112 | samba_cv_HAVE_INO64_T=${samba_cv_HAVE_INO64_T=no} | ||
113 | samba_cv_HAVE_INT16_FROM_RPC_RPC_H=${samba_cv_HAVE_INT16_FROM_RPC_RPC_H=no} | ||
114 | samba_cv_HAVE_INT32_FROM_RPC_RPC_H=${samba_cv_HAVE_INT32_FROM_RPC_RPC_H=no} | ||
115 | samba_cv_HAVE_IRIX_SPECIFIC_CAPABILITIES=${samba_cv_HAVE_IRIX_SPECIFIC_CAPABILITIES=no} | ||
116 | samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=${samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=yes} | ||
117 | samba_cv_HAVE_KERNEL_OPLOCKS_IRIX=${samba_cv_HAVE_KERNEL_OPLOCKS_IRIX=no} | ||
118 | samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=${samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=yes} | ||
119 | samba_cv_HAVE_KERNEL_SHARE_MODES=${samba_cv_HAVE_KERNEL_SHARE_MODES=yes} | ||
120 | samba_cv_HAVE_MMAP=${samba_cv_HAVE_MMAP=yes} | ||
121 | samba_cv_HAVE_NATIVE_ICONV=${samba_cv_HAVE_NATIVE_ICONV=yes} | ||
122 | samba_cv_HAVE_OFF64_T=${samba_cv_HAVE_OFF64_T=no} | ||
123 | samba_cv_HAVE_QUOTACTL_4A=${samba_cv_HAVE_QUOTACTL_4A=yes} | ||
124 | samba_cv_HAVE_ROOT=${samba_cv_HAVE_ROOT=no} | ||
125 | samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT=${samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT=no} | ||
126 | samba_cv_HAVE_SECURE_MKSTEMP=${samba_cv_HAVE_SECURE_MKSTEMP=yes} | ||
127 | samba_cv_HAVE_SENDFILE=${samba_cv_HAVE_SENDFILE=no} | ||
128 | samba_cv_HAVE_SENDFILE64=${samba_cv_HAVE_SENDFILE64=no} | ||
129 | samba_cv_HAVE_SOCK_SIN_LEN=${samba_cv_HAVE_SOCK_SIN_LEN=no} | ||
130 | samba_cv_HAVE_STAT_ST_BLKSIZE=${samba_cv_HAVE_STAT_ST_BLKSIZE=yes} | ||
131 | samba_cv_HAVE_STAT_ST_BLOCKS=${samba_cv_HAVE_STAT_ST_BLOCKS=yes} | ||
132 | samba_cv_HAVE_STRUCT_DIRENT64=${samba_cv_HAVE_STRUCT_DIRENT64=no} | ||
133 | samba_cv_HAVE_STRUCT_FLOCK64=${samba_cv_HAVE_STRUCT_FLOCK64=yes} | ||
134 | samba_cv_HAVE_STRUCT_IF_DQBLK=${samba_cv_HAVE_STRUCT_IF_DQBLK=no} | ||
135 | samba_cv_HAVE_STRUCT_MEM_DQBLK=${samba_cv_HAVE_STRUCT_MEM_DQBLK=no} | ||
136 | samba_cv_HAVE_TRUNCATED_SALT=${samba_cv_HAVE_TRUNCATED_SALT=no} | ||
137 | samba_cv_HAVE_UINT16_FROM_RPC_RPC_H=${samba_cv_HAVE_UINT16_FROM_RPC_RPC_H=no} | ||
138 | samba_cv_HAVE_UINT32_FROM_RPC_RPC_H=${samba_cv_HAVE_UINT32_FROM_RPC_RPC_H=no} | ||
139 | samba_cv_HAVE_UNSIGNED_CHAR=${samba_cv_HAVE_UNSIGNED_CHAR=yes} | ||
140 | samba_cv_HAVE_UTIMBUF=${samba_cv_HAVE_UTIMBUF=yes} | ||
141 | samba_cv_HAVE_UT_UT_ADDR=${samba_cv_HAVE_UT_UT_ADDR=yes} | ||
142 | samba_cv_HAVE_UT_UT_EXIT=${samba_cv_HAVE_UT_UT_EXIT=yes} | ||
143 | samba_cv_HAVE_UT_UT_HOST=${samba_cv_HAVE_UT_UT_HOST=yes} | ||
144 | samba_cv_HAVE_UT_UT_ID=${samba_cv_HAVE_UT_UT_ID=yes} | ||
145 | samba_cv_HAVE_UT_UT_NAME=${samba_cv_HAVE_UT_UT_NAME=yes} | ||
146 | samba_cv_HAVE_UT_UT_PID=${samba_cv_HAVE_UT_UT_PID=yes} | ||
147 | samba_cv_HAVE_UT_UT_TIME=${samba_cv_HAVE_UT_UT_TIME=yes} | ||
148 | samba_cv_HAVE_UT_UT_TV=${samba_cv_HAVE_UT_UT_TV=yes} | ||
149 | samba_cv_HAVE_UT_UT_TYPE=${samba_cv_HAVE_UT_UT_TYPE=yes} | ||
150 | samba_cv_HAVE_UT_UT_USER=${samba_cv_HAVE_UT_UT_USER=yes} | ||
151 | samba_cv_HAVE_UX_UT_SYSLEN=${samba_cv_HAVE_UX_UT_SYSLEN=no} | ||
152 | samba_cv_HAVE_VA_COPY=${samba_cv_HAVE_VA_COPY=yes} | ||
153 | samba_cv_HAVE_WORKING_AF_LOCAL=${samba_cv_HAVE_WORKING_AF_LOCAL=no} | ||
154 | samba_cv_HAVE_Werror=${samba_cv_HAVE_Werror=yes} | ||
155 | samba_cv_PUTUTLINE_RETURNS_UTMP=${samba_cv_PUTUTLINE_RETURNS_UTMP=yes} | ||
156 | samba_cv_QUOTA_WORKS=${samba_cv_QUOTA_WORKS=yes} | ||
157 | samba_cv_REPLACE_GETPASS=${samba_cv_REPLACE_GETPASS=yes} | ||
158 | samba_cv_REPLACE_INET_NTOA=${samba_cv_REPLACE_INET_NTOA=no} | ||
159 | samba_cv_RUN_QUOTA_TESTS=${samba_cv_RUN_QUOTA_TESTS=auto} | ||
160 | samba_cv_SEEKDIR_RETURNS_VOID=${samba_cv_SEEKDIR_RETURNS_VOID=yes} | ||
161 | samba_cv_SIZEOF_INO_T=${samba_cv_SIZEOF_INO_T=yes} | ||
162 | samba_cv_SIZEOF_OFF_T=${samba_cv_SIZEOF_OFF_T=yes} | ||
163 | samba_cv_SYSCONF_SC_NGROUPS_MAX=${samba_cv_SYSCONF_SC_NGROUPS_MAX=yes} | ||
164 | samba_cv_SYSQUOTA_FOUND=${samba_cv_SYSQUOTA_FOUND=yes} | ||
165 | samba_cv_SYSQUOTA_WORKS=${samba_cv_SYSQUOTA_WORKS=yes} | ||
166 | samba_cv_TRY_QUOTAS=${samba_cv_TRY_QUOTAS=no} | ||
167 | samba_cv_TRY_SYS_QUOTAS=${samba_cv_TRY_SYS_QUOTAS=no} | ||
168 | samba_cv_USE_SETRESUID=${samba_cv_USE_SETRESUID=yes} | ||
169 | samba_cv_WITH_QUOTAS=${samba_cv_WITH_QUOTAS=auto} | ||
170 | samba_cv_WITH_SYS_QUOTAS=${samba_cv_WITH_SYS_QUOTAS=auto} | ||
171 | samba_cv_compiler_supports_ll=${samba_cv_compiler_supports_ll=yes} | ||
172 | samba_cv_have_longlong=${samba_cv_have_longlong=yes} | ||
173 | samba_cv_have_setresgid=${samba_cv_have_setresgid=yes} | ||
174 | samba_cv_have_setresuid=${samba_cv_have_setresuid=yes} | ||
175 | samba_cv_immediate_structures=${samba_cv_immediate_structures=yes} | ||
176 | samba_cv_optimize_out_funcation_calls=${samba_cv_optimize_out_funcation_calls=yes} | ||
177 | samba_cv_sig_atomic_t=${samba_cv_sig_atomic_t=yes} | ||
178 | samba_cv_socklen_t=${samba_cv_socklen_t=yes} | ||
179 | samba_cv_unixsocket=${samba_cv_unixsocket=yes} | ||
180 | samba_cv_volatile=${samba_cv_volatile=yes} | ||
181 | |||
182 | # sleepycat db | ||
183 | db_cv_fcntl_f_setfd=${db_cv_fcntl_f_setfd=yes} | ||
184 | db_cv_sprintf_count=${db_cv_sprintf_count=yes} | ||
185 | db_cv_path_ar=${db_cv_path_ar=/usr/bin/ar} | ||
186 | db_cv_path_chmod=${db_cv_path_chmod=/bin/chmod} | ||
187 | db_cv_path_cp=${db_cv_path_cp=/bin/cp} | ||
188 | db_cv_path_ln=${db_cv_path_ln=/bin/ln} | ||
189 | db_cv_path_mkdir=${db_cv_path_mkdir=/bin/mkdir} | ||
190 | db_cv_path_ranlib=${db_cv_path_ranlib=/usr/bin/ranlib} | ||
191 | db_cv_path_rm=${db_cv_path_rm=/bin/rm} | ||
192 | db_cv_path_sh=${db_cv_path_sh=/bin/sh} | ||
193 | db_cv_path_strip=${db_cv_path_strip=/usr/bin/strip} | ||
194 | db_cv_align_t=${db_cv_align_t='unsigned long long'} | ||
195 | db_cv_alignp_t=${db_cv_alignp_t='unsigned long'} | ||
196 | db_cv_mutex=${db_cv_mutex=no} | ||
197 | db_cv_posixmutexes=${db_cv_posixmutexes=no} | ||
198 | db_cv_uimutexes=${db_cv_uimutexes=no} | ||
199 | |||
200 | # php | ||
201 | ac_cv_pread=${ac_cv_pread=no} | ||
202 | ac_cv_pwrite=${ac_cv_pwrite=no} | ||
203 | php_cv_lib_cookie_io_functions_use_off64_t=${php_cv_lib_cookie_io_functions_use_off64_t=yes} | ||
204 | |||
205 | # glib | ||
206 | glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24} | ||
207 | glib_cv_sizeof_system_thread=${glib_cv_sizeof_system_thread=4} | ||
208 | glib_cv_stack_grows=${glib_cv_stack_grows=no} | ||
209 | glib_cv_uscore=${glib_cv_uscore=no} | ||
210 | glib_cv_use_pid_surrogate=${glib_cv_use_pid_surrogate=yes} | ||
211 | glib_cv_has__inline=${glib_cv_has__inline=yes} | ||
212 | glib_cv_has__inline__=${glib_cv_has__inline__=yes} | ||
213 | glib_cv_hasinline=${glib_cv_hasinline=yes} | ||
214 | glib_cv_sane_realloc=${glib_cv_sane_realloc=yes} | ||
215 | glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24} | ||
216 | glib_cv_uscore=${glib_cv_uscore=no} | ||
217 | glib_cv_va_copy=${glib_cv_va_copy=no} | ||
218 | glib_cv_va_val_copy=${glib_cv_va_val_copy=yes} | ||
219 | glib_cv___va_copy=${glib_cv___va_copy=yes} | ||
220 | glib_cv_rtldglobal_broken=${glib_cv_rtldglobal_broken=no} | ||
221 | ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} | ||
222 | glib_cv_sys_pthread_mutex_trylock_posix=${glib_cv_sys_pthread_mutex_trylock_posix=yes} | ||
223 | glib_cv_sys_pthread_getspecific_posix=${glib_cv_sys_pthread_getspecific_posix=yes} | ||
224 | glib_cv_sys_pthread_cond_timedwait_posix=${glib_cv_sys_pthread_cond_timedwait_posix=yes} | ||
225 | |||
226 | # ettercap | ||
227 | ettercap_cv_type_socklen_t=${ettercap_cv_type_socklen_t=yes} | ||
228 | |||
229 | # libesmtp | ||
230 | acx_working_snprintf=${acx_working_snprintf=yes} | ||
231 | |||
232 | # D-BUS | ||
233 | ac_cv_func_posix_getpwnam_r=${ac_cv_func_posix_getpwnam_r=yes} | ||
234 | |||
235 | # glib 2.0 | ||
236 | glib_cv_long_long_format=${glib_cv_long_long_format=ll} | ||
237 | glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24} | ||
238 | glib_cv_sizeof_intmax_t=${glib_cv_sizeof_intmax_t=8} | ||
239 | glib_cv_sizeof_ptrdiff_t=${glib_cv_sizeof_ptrdiff_t=4} | ||
240 | glib_cv_sizeof_size_t=${glib_cv_sizeof_size_t=4} | ||
241 | glib_cv_sizeof_system_thread=${glib_cv_sizeof_system_thread=4} | ||
242 | glib_cv_sys_use_pid_niceness_surrogate=${glib_cv_sys_use_pid_niceness_surrogate=yes} | ||
243 | |||
244 | glib_cv_strlcpy=${glib_cv_strlcpy=no} | ||
245 | |||
246 | # httppc | ||
247 | ac_cv_strerror_r_SUSv3=${ac_cv_strerror_r_SUSv3=no} | ||
248 | |||
249 | # jikes | ||
250 | ac_cv_sizeof_wchar_t=4 | ||
251 | |||
252 | # lftp | ||
253 | ac_cv_need_trio=${ac_cv_need_trio=no} | ||
254 | lftp_cv_va_copy=${lftp_cv_va_copy=no} | ||
255 | lftp_cv_va_val_copy=${lftp_cv_va_val_copy=yes} | ||
256 | lftp_cv___va_copy=${lftp_cv___va_copy=yes} | ||
257 | |||
258 | # edb | ||
259 | db_cv_spinlocks=${db_cv_spinlocks=no} | ||
260 | |||
261 | # fget | ||
262 | compat_cv_func_snprintf_works=${compat_cv_func_snprintf_works=yes} | ||
263 | compat_cv_func_basename_works=${compat_cv_func_basename_works=no} | ||
264 | compat_cv_func_dirname_works=${compat_cv_func_dirname_works=no} | ||
265 | |||
266 | # slrn | ||
267 | slrn_cv___va_copy=${slrn_cv___va_copy=yes} | ||
268 | slrn_cv_va_copy=${slrn_cv_va_copy=no} | ||
269 | slrn_cv_va_val_copy=${slrn_cv_va_val_copy=yes} | ||
270 | ac_cv_func_realloc_works=${ac_cv_func_realloc_works=yes} | ||
271 | ac_cv_func_realloc_0_nonnull=${ac_cv_func_realloc_0_nonnull=yes} | ||
272 | ac_cv_func_malloc_works=${ac_cv_func_malloc_works=yes} | ||
273 | ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes} | ||
274 | |||
275 | # startup-notification | ||
276 | lf_cv_sane_realloc=yes | ||
277 | |||
278 | # libidl | ||
279 | libIDL_cv_long_long_format=${libIDL_cv_long_long_format=ll} | ||
280 | |||
281 | # ORBit2 | ||
282 | ac_cv_alignof_CORBA_boolean=1 | ||
283 | ac_cv_alignof_CORBA_char=1 | ||
284 | ac_cv_alignof_CORBA_double=4 | ||
285 | ac_cv_alignof_CORBA_float=4 | ||
286 | ac_cv_alignof_CORBA_long=4 | ||
287 | ac_cv_alignof_CORBA_long_double=4 | ||
288 | ac_cv_alignof_CORBA_long_long=4 | ||
289 | ac_cv_alignof_CORBA_octet=1 | ||
290 | ac_cv_alignof_CORBA_pointer=4 | ||
291 | ac_cv_alignof_CORBA_short=2 | ||
292 | ac_cv_alignof_CORBA_struct=4 | ||
293 | ac_cv_alignof_CORBA_wchar=2 | ||
294 | ac_cv_func_getaddrinfo=${ac_cv_func_getaddrinfo=yes} | ||
295 | |||
296 | # cvs | ||
297 | cvs_cv_func_printf_ptr=${cvs_cv_func_printf_ptr=yes} | ||
298 | |||
299 | # bash | ||
300 | ac_cv_c_long_double=${ac_cv_c_long_double=yes} | ||
301 | bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes} | ||
302 | bash_cv_func_sigsetjmp=${bash_cv_func_sigsetjmp=missing} | ||
303 | bash_cv_must_reinstall_sighandlers=${bash_cv_must_reinstall_sighandlers=no} | ||
304 | bash_cv_func_strcoll_broken=${bash_cv_func_strcoll_broken=no} | ||
305 | bash_cv_under_sys_siglist=${bash_cv_under_sys_siglist=yes} | ||
306 | bash_cv_sys_siglist=${bash_cv_sys_siglist=yes} | ||
307 | bash_cv_dup2_broken=${bash_cv_dup2_broken=no} | ||
308 | bash_cv_opendir_not_robust=${bash_cv_opendir_not_robust=no} | ||
309 | bash_cv_type_rlimit=${bash_cv_type_rlimit=rlim_t} | ||
310 | bash_cv_getenv_redef=${bash_cv_getenv_redef=yes} | ||
311 | bash_cv_ulimit_maxfds=${bash_cv_ulimit_maxfds=yes} | ||
312 | bash_cv_getcwd_calls_popen=${bash_cv_getcwd_calls_popen=no} | ||
313 | bash_cv_printf_a_format=${bash_cv_printf_a_format=yes} | ||
314 | bash_cv_pgrp_pipe=${bash_cv_pgrp_pipe=no} | ||
315 | bash_cv_job_control_missing=${bash_cv_job_control_missing=present} | ||
316 | bash_cv_sys_named_pipes=${bash_cv_sys_named_pipes=present} | ||
317 | bash_cv_unusable_rtsigs=${bash_cv_unusable_rtsigs=no} | ||
318 | ac_cv_have_decl_sys_siglist=${ac_cv_have_decl_sys_siglist=yes} | ||
319 | |||
320 | # mono | ||
321 | cv_mono_sizeof_sunpath=108 | ||
322 | |||
323 | # mysql | ||
324 | mysql_cv_func_atomic_sub=${mysql_cv_func_atomic_sub=no} | ||
325 | mysql_cv_func_atomic_add=${mysql_cv_func_atomic_add=no} | ||
326 | ac_cv_conv_longlong_to_float=${ac_cv_conv_longlong_to_float=yes} | ||
327 | |||
328 | # minicom | ||
329 | ac_cv_header_getopt_h=${ac_cv_header_getopt_h=xno} | ||
330 | ac_cv_func_getopt_long=${ac_cv_func_getopt_long=xno} | ||
331 | am_cv_sys_posix_termios=${ac_cv_sys_posix_termios=yes} | ||
332 | |||
333 | # gettext | ||
334 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} | ||
335 | |||
336 | # fnmatch | ||
337 | ac_cv_func_fnmatch_works=${ac_cv_func_fnmatch_works=yes} | ||
338 | |||
339 | # rsync | ||
340 | rsync_cv_HAVE_BROKEN_LARGEFILE=${rsync_cv_HAVE_BROKEN_LARGEFILE=no} | ||
341 | rsync_cv_HAVE_SOCKETPAIR=${rsync_cv_HAVE_SOCKETPAIR=yes} | ||
342 | rsync_cv_HAVE_LONGLONG=${rsync_cv_HAVE_LONGLONG=yes} | ||
343 | rsync_cv_HAVE_OFF64_T=${rsync_cv_HAVE_OFF64_T=no} | ||
344 | rsync_cv_HAVE_SHORT_INO_T=${rsync_cv_HAVE_SHORT_INO_T=no} | ||
345 | rsync_cv_HAVE_UNSIGNED_CHAR=${rsync_cv_HAVE_UNSIGNED_CHAR=no} | ||
346 | rsync_cv_HAVE_BROKEN_READDIR=${rsync_cv_HAVE_BROKEN_READDIR=no} | ||
347 | rsync_cv_HAVE_GETTIMEOFDAY_TZ=${rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes} | ||
348 | rsync_cv_HAVE_C99_VSNPRINTF=${rsync_cv_HAVE_C99_VSNPRINTF=yes} | ||
349 | rsync_cv_HAVE_SECURE_MKSTEMP=${rsync_cv_HAVE_SECURE_MKSTEMP=yes} | ||
350 | rsync_cv_REPLACE_INET_NTOA=${rsync_cv_REPLACE_INET_NTOA=no} | ||
351 | rsync_cv_REPLACE_INET_ATON=${rsync_cv_REPLACE_INET_ATON=no} | ||
352 | |||
353 | # sudo | ||
354 | sudo_cv_uid_t_len=${sudo_cv_uid_t_len=10} | ||
355 | |||
356 | # ipsec-tools | ||
357 | ac_cv_va_copy=${ac_cv_va_copy=no} | ||
358 | ac_cv_va_val_copy=${ac_cv_va_val_copy=yes} | ||
359 | ac_cv___va_copy=${ac_cv___va_copy=yes} | ||
360 | racoon_cv_bug_getaddrinfo=${racoon_cv_bug_getaddrinfo=no} | ||
diff --git a/meta/site/sh4-linux-uclibc b/meta/site/sh4-linux-uclibc deleted file mode 100644 index a64766fafa..0000000000 --- a/meta/site/sh4-linux-uclibc +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | ac_cv_func_realloc_works=${ac_cv_func_realloc_works=yes} | ||
2 | ac_cv_func_realloc_0_nonnull=${ac_cv_func_realloc_0_nonnull=yes} | ||
3 | ac_cv_func_malloc_works=${ac_cv_func_malloc_works=yes} | ||
4 | ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes} | ||
5 | |||
6 | # gettext | ||
7 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} | ||
8 | |||
9 | # bash (mbstate needed for readline) | ||
10 | bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes} | ||
11 | |||
12 | # libpcap | ||
13 | ac_cv_linux_vers=${ac_cv_linux_vers=2} | ||
14 | |||
15 | # libnet | ||
16 | ac_cv_lbl_unaligned_fail=${ac_cv_lbl_unaligned_fail=no} | ||
17 | ac_libnet_have_packet_socket=${ac_libnet_have_packet_socket=yes} | ||
18 | ac_cv_c_littleendian=${ac_cv_c_littleendian=yes} | ||
19 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
diff --git a/meta/site/sparc-linux b/meta/site/sparc-linux index 669677a0b1..49abe7c389 100644 --- a/meta/site/sparc-linux +++ b/meta/site/sparc-linux | |||
@@ -30,8 +30,6 @@ ac_cv_ushort=${ac_cv_ushort=yes} | |||
30 | 30 | ||
31 | mr_cv_target_elf=${mr_cv_target_elf=yes} | 31 | mr_cv_target_elf=${mr_cv_target_elf=yes} |
32 | 32 | ||
33 | ac_cv_c_littleendian=${ac_cv_c_littleendian=no} | ||
34 | ac_cv_c_bigendian=${ac_cv_c_bigendian=yes} | ||
35 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} | 33 | ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} |
36 | cookie_io_functions_use_off64_t=${cookie_io_functions_use_off64_t=yes} | 34 | cookie_io_functions_use_off64_t=${cookie_io_functions_use_off64_t=yes} |
37 | 35 | ||
diff --git a/meta/site/x86_64-linux b/meta/site/x86_64-linux index 375ad20754..1453a86b76 100644 --- a/meta/site/x86_64-linux +++ b/meta/site/x86_64-linux | |||
@@ -1,4 +1,3 @@ | |||
1 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
2 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} | 1 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} |
3 | ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} | 2 | ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} |
4 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} | 3 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} |
@@ -11,6 +10,7 @@ ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no} | |||
11 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | 10 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} |
12 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} | 11 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} |
13 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=lil} | 12 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=lil} |
13 | ac_libnet_have_packet_socket=${ac_libnet_have_packet_socket=yes} | ||
14 | ac_cv_linux_vers=${ac_cv_linux_vers=2} | 14 | ac_cv_linux_vers=${ac_cv_linux_vers=2} |
15 | ac_cv_need_trio=${ac_cv_need_trio=no} | 15 | ac_cv_need_trio=${ac_cv_need_trio=no} |
16 | ac_cv_sizeof_char=${ac_cv_sizeof_char=1} | 16 | ac_cv_sizeof_char=${ac_cv_sizeof_char=1} |
@@ -29,7 +29,7 @@ bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes} | |||
29 | db_cv_alignp_t=${db_cv_alignp_t='unsigned long long'} | 29 | db_cv_alignp_t=${db_cv_alignp_t='unsigned long long'} |
30 | db_cv_align_t=${db_cv_align_t='unsigned long long'} | 30 | db_cv_align_t=${db_cv_align_t='unsigned long long'} |
31 | db_cv_fcntl_f_setfd=${db_cv_fcntl_f_setfd=yes} | 31 | db_cv_fcntl_f_setfd=${db_cv_fcntl_f_setfd=yes} |
32 | db_cv_mutex=${db_cv_mutex=x86_64/gcc-assembly} | 32 | db_cv_mutex=${db_cv_mutex=x86_64/gcc-assembly}} |
33 | db_cv_path_ar=${db_cv_path_ar=/usr/bin/ar} | 33 | db_cv_path_ar=${db_cv_path_ar=/usr/bin/ar} |
34 | db_cv_path_chmod=${db_cv_path_chmod=/bin/chmod} | 34 | db_cv_path_chmod=${db_cv_path_chmod=/bin/chmod} |
35 | db_cv_path_cp=${db_cv_path_cp=/bin/cp} | 35 | db_cv_path_cp=${db_cv_path_cp=/bin/cp} |
@@ -78,3 +78,6 @@ utils_cv_sys_open_max=${utils_cv_sys_open_max=1015} | |||
78 | 78 | ||
79 | # gettext | 79 | # gettext |
80 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} | 80 | am_cv_func_working_getline=${am_cv_func_working_getline=yes} |
81 | |||
82 | #gcc | ||
83 | ac_cv_lib_m_sin=${ac_cv_lib_m_sin=yes} | ||
diff --git a/meta/site/x86_64-linux-uclibc b/meta/site/x86_64-linux-uclibc index ba60564d0d..4e391b2c2e 100644 --- a/meta/site/x86_64-linux-uclibc +++ b/meta/site/x86_64-linux-uclibc | |||
@@ -1,4 +1,3 @@ | |||
1 | ac_cv_c_bigendian=${ac_cv_c_bigendian=no} | ||
2 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} | 1 | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes} |
3 | ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} | 2 | ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} |
4 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} | 3 | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes} |
@@ -11,6 +10,7 @@ ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no} | |||
11 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | 10 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} |
12 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} | 11 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} |
13 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=lil} | 12 | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=lil} |
13 | ac_libnet_have_packet_socket=${ac_libnet_have_packet_socket=yes} | ||
14 | ac_cv_linux_vers=${ac_cv_linux_vers=2} | 14 | ac_cv_linux_vers=${ac_cv_linux_vers=2} |
15 | ac_cv_need_trio=${ac_cv_need_trio=no} | 15 | ac_cv_need_trio=${ac_cv_need_trio=no} |
16 | ac_cv_sizeof_char=${ac_cv_sizeof_char=1} | 16 | ac_cv_sizeof_char=${ac_cv_sizeof_char=1} |