diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-11-28 17:57:33 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-11-28 17:57:33 +0000 |
commit | e64b269c74ef04f67a851efa1e98a384132163f2 (patch) | |
tree | 04ec0303a59186622684108661c5876ef93d6353 /devel/ups-debug/files/patch-configure | |
parent | - Unbreak for 4.x by updating to 3.38-beta1. (diff) |
Add a couple of patches for 5.0 to begin with.
Notes
Notes:
svn path=/head/; revision=71212
Diffstat (limited to 'devel/ups-debug/files/patch-configure')
-rw-r--r-- | devel/ups-debug/files/patch-configure | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/devel/ups-debug/files/patch-configure b/devel/ups-debug/files/patch-configure new file mode 100644 index 000000000000..ef35aa6f368d --- /dev/null +++ b/devel/ups-debug/files/patch-configure @@ -0,0 +1,48 @@ +--- configure.in.orig Mon Sep 30 20:26:28 2002 ++++ configure.in Fri Nov 29 00:51:28 2002 +@@ -981,13 +981,13 @@ + AC_CACHE_VAL(ups_cv_var_global_files,[ + ups_cv_var_global_files=no + if test $ups_cv_var_global_files = no ; then +- AC_EGREP_HEADER( __iob.*;, stdio.h, ups_cv_var_global_files=__iob) ++ AC_EGREP_HEADER( __iob\>.*;, stdio.h, ups_cv_var_global_files=__iob) + fi + if test $ups_cv_var_global_files = no ; then +- AC_EGREP_HEADER( _iob.*;, stdio.h, ups_cv_var_global_files=_iob) ++ AC_EGREP_HEADER( _iob\>.*;, stdio.h, ups_cv_var_global_files=_iob) + fi + if test $ups_cv_var_global_files = no ; then +- AC_EGREP_HEADER( __sF.*;, stdio.h, ups_cv_var_global_files=__sF) ++ AC_EGREP_HEADER( __sF\>.*;, stdio.h, ups_cv_var_global_files=__sF) + fi + ]) + case "$ups_cv_var_global_files" in +--- configure.orig Wed Oct 23 01:37:31 2002 ++++ configure Fri Nov 29 00:51:12 2002 +@@ -6624,7 +6624,7 @@ + #include <stdio.h> + EOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- egrep "__iob.*;" >/dev/null 2>&1; then ++ egrep "__iob\>.*;" >/dev/null 2>&1; then + rm -rf conftest* + ups_cv_var_global_files=__iob + fi +@@ -6638,7 +6638,7 @@ + #include <stdio.h> + EOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- egrep "_iob.*;" >/dev/null 2>&1; then ++ egrep "_iob\>.*;" >/dev/null 2>&1; then + rm -rf conftest* + ups_cv_var_global_files=_iob + fi +@@ -6652,7 +6652,7 @@ + #include <stdio.h> + EOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- egrep "__sF.*;" >/dev/null 2>&1; then ++ egrep "__sF\>.*;" >/dev/null 2>&1; then + rm -rf conftest* + ups_cv_var_global_files=__sF + fi |