diff options
author | Dmitry Sivachenko <demon@FreeBSD.org> | 2002-11-18 09:36:03 +0000 |
---|---|---|
committer | Dmitry Sivachenko <demon@FreeBSD.org> | 2002-11-18 09:36:03 +0000 |
commit | 5072eb645f99409b29656db78bd9f3dac24c457e (patch) | |
tree | f1bb605da160aa380cf7f424156e4b52ebd637f9 /net | |
parent | Add several new real categories and virtual categories. (diff) |
Add a patch to make this work.
Noticed by: Rudy <rudy@comm2000.it>
Notes
Notes:
svn path=/head/; revision=70386
Diffstat (limited to 'net')
-rw-r--r-- | net/mrtg/files/patch-configure | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/net/mrtg/files/patch-configure b/net/mrtg/files/patch-configure new file mode 100644 index 000000000000..d63c1fb9a42d --- /dev/null +++ b/net/mrtg/files/patch-configure @@ -0,0 +1,63 @@ +--- configure.orig Mon Nov 18 01:18:38 2002 ++++ configure Mon Nov 18 12:36:29 2002 +@@ -1146,7 +1146,7 @@ + + echo $ac_n "checking for unsigned long long""... $ac_c" 1>&6 + echo "configure:1149: checking for unsigned long long" >&5 +-if eval "test \"`echo '$''{'ac_cv_type_unsigned long long'+set}'`\" = set"; then ++if eval "test \"`echo '$''{'ac_cv_type_unsigned_long_long'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <<EOF +@@ -1161,25 +1161,24 @@ + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "(^|[^a-zA-Z_0-9])unsigned long long[^a-zA-Z_0-9]" >/dev/null 2>&1; then + rm -rf conftest* +- ac_cv_type_unsigned long long=yes ++ ac_cv_type_unsigned_long_long=yes + else + rm -rf conftest* +- ac_cv_type_unsigned long long=no ++ ac_cv_type_unsigned_long_long=no + fi + rm -f conftest* + + fi +-echo "$ac_t""$ac_cv_type_unsigned long long" 1>&6 +-if test $ac_cv_type_unsigned long long = no; then ++echo "$ac_t""$ac_cv_type_unsigned_long_long" 1>&6 ++if test $ac_cv_type_unsigned_long_long = no; then + cat >> confdefs.h <<\EOF +-#define unsigned long long + EOF + + fi + + echo $ac_n "checking for long long""... $ac_c" 1>&6 + echo "configure:1182: checking for long long" >&5 +-if eval "test \"`echo '$''{'ac_cv_type_long long'+set}'`\" = set"; then ++if eval "test \"`echo '$''{'ac_cv_type_long_long'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <<EOF +@@ -1194,16 +1193,16 @@ + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "(^|[^a-zA-Z_0-9])long long[^a-zA-Z_0-9]" >/dev/null 2>&1; then + rm -rf conftest* +- ac_cv_type_long long=yes ++ ac_cv_type_long_long=yes + else + rm -rf conftest* +- ac_cv_type_long long=no ++ ac_cv_type_long_long=no + fi + rm -f conftest* + + fi +-echo "$ac_t""$ac_cv_type_long long" 1>&6 +-if test $ac_cv_type_long long = no; then ++echo "$ac_t""$ac_cv_type_long_long" 1>&6 ++if test $ac_cv_type_long_long = no; then + cat >> confdefs.h <<\EOF + #define long long + EOF |