mirror of
https://github.com/openwrt/packages.git
synced 2025-12-24 08:28:20 +04:00
32
net/git/patches/100-configure_for_crosscompiling.patch
Normal file
32
net/git/patches/100-configure_for_crosscompiling.patch
Normal file
@@ -0,0 +1,32 @@
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -869,7 +869,8 @@ AC_RUN_IFELSE(
|
||||
FILE *f = fopen(".", "r");
|
||||
return f && fread(&c, 1, 1, f)]])],
|
||||
[ac_cv_fread_reads_directories=no],
|
||||
- [ac_cv_fread_reads_directories=yes])
|
||||
+ [ac_cv_fread_reads_directories=yes],
|
||||
+ [ac_cv_fread_reads_directories=no])
|
||||
])
|
||||
if test $ac_cv_fread_reads_directories = yes; then
|
||||
FREAD_READS_DIRECTORIES=UnfortunatelyYes
|
||||
@@ -903,7 +904,8 @@ AC_RUN_IFELSE(
|
||||
if (snprintf(buf, 3, "%s", "12345") != 5
|
||||
|| strcmp(buf, "12")) return 1]])],
|
||||
[ac_cv_snprintf_returns_bogus=no],
|
||||
- [ac_cv_snprintf_returns_bogus=yes])
|
||||
+ [ac_cv_snprintf_returns_bogus=yes],
|
||||
+ [ac_cv_snprintf_returns_bogus=no])
|
||||
])
|
||||
if test $ac_cv_snprintf_returns_bogus = yes; then
|
||||
SNPRINTF_RETURNS_BOGUS=UnfortunatelyYes
|
||||
@@ -926,7 +928,8 @@ yippeeyeswehaveit
|
||||
#endif
|
||||
]),
|
||||
[ac_cv_sane_mode_bits=yes],
|
||||
- [ac_cv_sane_mode_bits=no])
|
||||
+ [ac_cv_sane_mode_bits=no],
|
||||
+ [ac_cv_sane_mode_bits=yes])
|
||||
])
|
||||
if test $ac_cv_sane_mode_bits = yes; then
|
||||
NEEDS_MODE_TRANSLATION=
|
||||
Reference in New Issue
Block a user