You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

42 lines
1.4 KiB

Index: src/Makefile.in
--- src/Makefile.in.orig 2002-03-26 17:09:36 +0100
+++ src/Makefile.in 2005-02-28 17:00:46 +0100
@@ -379,12 +379,12 @@
egrep:
echo '#!/bin/sh' >$@
- echo 'exec grep -E $${1+"$$@"}' >>$@
+ echo "exec $(bindir)/grep -E "'$${1+"$$@"}' >>$@
chmod a+x $@
fgrep:
echo '#!/bin/sh' >$@
- echo 'exec grep -F $${1+"$$@"}' >>$@
+ echo "exec $(bindir)/grep -F "'$${1+"$$@"}' >>$@
chmod a+x $@
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
Index: src/dfa.c
--- src/dfa.c.orig 2001-09-26 18:57:55 +0200
+++ src/dfa.c 2005-02-28 17:00:46 +0100
@@ -44,7 +44,7 @@
# include <locale.h>
#endif
-#if defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H && defined HAVE_MBRTOWC
+#if defined HAVE_WCTYPE_H && defined HAVE_WCTYPE && defined HAVE_WCHAR_H && defined HAVE_MBRTOWC
/* We can handle multibyte string. */
# define MBS_SUPPORT
#endif
Index: src/search.c
--- src/search.c.orig 2001-04-19 05:42:14 +0200
+++ src/search.c 2005-02-28 17:00:46 +0100
@@ -22,7 +22,7 @@
# include <config.h>
#endif
#include <sys/types.h>
-#if defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H && defined HAVE_MBRTOWC
+#if defined HAVE_WCTYPE_H && defined HAVE_WCTYPE && defined HAVE_WCHAR_H && defined HAVE_MBRTOWC
/* We can handle multibyte string. */
# define MBS_SUPPORT
# include <wchar.h>