summaryrefslogtreecommitdiff
path: root/nano/nano-1.3.0/configure.patch
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /nano/nano-1.3.0/configure.patch
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'nano/nano-1.3.0/configure.patch')
-rw-r--r--nano/nano-1.3.0/configure.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/nano/nano-1.3.0/configure.patch b/nano/nano-1.3.0/configure.patch
deleted file mode 100644
index 62d33639c5..0000000000
--- a/nano/nano-1.3.0/configure.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-
-#
-# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
-#
-
---- nano-1.3.0/configure.ac~configure
-+++ nano-1.3.0/configure.ac
-@@ -39,16 +39,22 @@
- AC_HEADER_STDC
- AC_CHECK_HEADERS(fcntl.h getopt.h libintl.h limits.h regex.h termio.h termios.h unistd.h)
- AC_CHECK_HEADER(regex.h,
-- AC_MSG_CHECKING([for broken regexec])
-- AC_TRY_RUN([
-+AC_CACHE_CHECK([for broken regexec],
-+ [nano_cv_func_regexec_segfault_emptystr],
-+ AC_TRY_RUN([
- #include <sys/types.h>
- #include <regex.h>
- int main () { regex_t reg; size_t n = 1; regmatch_t r; regcomp(&reg, "\\<", 0); regexec(&reg, "", n, &r, 0); regfree(&reg); return 0; }],
-- AC_MSG_RESULT(no),
-- AC_MSG_RESULT(yes); AC_DEFINE(BROKEN_REGEXEC, 1, [Define this if your regexec() function segfaults when passed an empty string under certain conditions.])
-+ nano_cv_func_regexec_segv_emptystr=no,
-+ nano_cv_func_regexec_segv_emptystr=yes,
-+ nano_cv_func_regexec_segv_emptystr=no)
- )
- )
-
-+if test x$ac_cv_func_regexec_segv_emptystr = xyes; then
-+ AC_DEFINE(BROKEN_REGEXEC, 1, [Define this if your regexec() function segfaults when passed an empty string under certain conditions.])
-+fi
-+
- dnl options
- AC_ARG_ENABLE(debug,
- [ --enable-debug Enable debugging (disabled by default)],