pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/nbsed/files regen



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d8f172b1e848
branches:  trunk
changeset: 462845:d8f172b1e848
user:      grant <grant%pkgsrc.org@localhost>
date:      Thu Oct 16 12:06:26 2003 +0000

description:
regen

diffstat:

 textproc/nbsed/files/config.h.in |  14 ++++++
 textproc/nbsed/files/configure   |  86 +++++++++++++++++++++++++++++++++------
 2 files changed, 86 insertions(+), 14 deletions(-)

diffs (187 lines):

diff -r 6056e832970b -r d8f172b1e848 textproc/nbsed/files/config.h.in
--- a/textproc/nbsed/files/config.h.in  Thu Oct 16 12:05:36 2003 +0000
+++ b/textproc/nbsed/files/config.h.in  Thu Oct 16 12:06:26 2003 +0000
@@ -124,6 +124,10 @@
 /* Define to empty if `const' does not conform to ANSI C. */
 #undef const
 
+/* Define as `__inline' if that's what the C compiler calls it, or to nothing
+   if it is not supported. */
+#undef inline
+
 /* Define to `unsigned' if <sys/types.h> does not define. */
 #undef size_t
 
@@ -206,3 +210,13 @@
 # endif
 #endif
 
+#ifndef DEFFILEMODE
+# define DEFFILEMODE     (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
+#endif
+
+#include <stdio.h>
+
+#ifndef HAVE_FGETLN
+char *fgetln(FILE *, size_t *);
+#endif
+
diff -r 6056e832970b -r d8f172b1e848 textproc/nbsed/files/configure
--- a/textproc/nbsed/files/configure    Thu Oct 16 12:05:36 2003 +0000
+++ b/textproc/nbsed/files/configure    Thu Oct 16 12:06:26 2003 +0000
@@ -1,8 +1,8 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.57 for nb-sed 20030823.
+# Generated by GNU Autoconf 2.57 for nbsed 20031016.
 #
-# Report bugs to <agc%netbsd.org@localhost>.
+# Report bugs to <agc%NetBSD.org@localhost>.
 #
 # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
 # Free Software Foundation, Inc.
@@ -266,11 +266,11 @@
 : ${ac_max_here_lines=38}
 
 # Identity of this package.
-PACKAGE_NAME='nb-sed'
-PACKAGE_TARNAME='nb-sed'
-PACKAGE_VERSION='20030823'
-PACKAGE_STRING='nb-sed 20030823'
-PACKAGE_BUGREPORT='agc%netbsd.org@localhost'
+PACKAGE_NAME='nbsed'
+PACKAGE_TARNAME='nbsed'
+PACKAGE_VERSION='20031016'
+PACKAGE_STRING='nbsed 20031016'
+PACKAGE_BUGREPORT='agc%NetBSD.org@localhost'
 
 ac_unique_file="main.c"
 # Factoring default headers for most tests.
@@ -779,7 +779,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures nb-sed 20030823 to adapt to many kinds of systems.
+\`configure' configures nbsed 20031016 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -845,7 +845,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of nb-sed 20030823:";;
+     short | recursive ) echo "Configuration of nbsed 20031016:";;
    esac
   cat <<\_ACEOF
 
@@ -861,7 +861,7 @@
 Use these variables to override the choices made by `configure' or to help
 it to find libraries and programs with nonstandard names/locations.
 
-Report bugs to <agc%netbsd.org@localhost>.
+Report bugs to <agc%NetBSD.org@localhost>.
 _ACEOF
 fi
 
@@ -924,7 +924,7 @@
 test -n "$ac_init_help" && exit 0
 if $ac_init_version; then
   cat <<\_ACEOF
-nb-sed configure 20030823
+nbsed configure 20031016
 generated by GNU Autoconf 2.57
 
 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
@@ -939,7 +939,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by nb-sed $as_me 20030823, which was
+It was created by nbsed $as_me 20031016, which was
 generated by GNU Autoconf 2.57.  Invocation command line was
 
   $ $0 $@
@@ -3835,6 +3835,64 @@
 
 fi
 
+echo "$as_me:$LINENO: checking for inline" >&5
+echo $ECHO_N "checking for inline... $ECHO_C" >&6
+if test "${ac_cv_c_inline+set}" = set; then
+  echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+  ac_cv_c_inline=no
+for ac_kw in inline __inline__ __inline; do
+  cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+/* confdefs.h.  */
+_ACEOF
+cat confdefs.h >>conftest.$ac_ext
+cat >>conftest.$ac_ext <<_ACEOF
+/* end confdefs.h.  */
+#ifndef __cplusplus
+typedef int foo_t;
+static $ac_kw foo_t static_foo () {return 0; }
+$ac_kw foo_t foo () {return 0; }
+#endif
+
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+  (eval $ac_compile) 2>&5
+  ac_status=$?
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+  (exit $ac_status); } &&
+         { ac_try='test -s conftest.$ac_objext'
+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+  (eval $ac_try) 2>&5
+  ac_status=$?
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+  (exit $ac_status); }; }; then
+  ac_cv_c_inline=$ac_kw; break
+else
+  echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+done
+
+fi
+echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5
+echo "${ECHO_T}$ac_cv_c_inline" >&6
+case $ac_cv_c_inline in
+  inline | yes) ;;
+  no)
+cat >>confdefs.h <<\_ACEOF
+#define inline
+_ACEOF
+ ;;
+  *)  cat >>confdefs.h <<_ACEOF
+#define inline $ac_cv_c_inline
+_ACEOF
+ ;;
+esac
+
 echo "$as_me:$LINENO: checking for size_t" >&5
 echo $ECHO_N "checking for size_t... $ECHO_C" >&6
 if test "${ac_cv_type_size_t+set}" = set; then
@@ -4769,7 +4827,7 @@
 } >&5
 cat >&5 <<_CSEOF
 
-This file was extended by nb-sed $as_me 20030823, which was
+This file was extended by nbsed $as_me 20031016, which was
 generated by GNU Autoconf 2.57.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -4829,7 +4887,7 @@
 
 cat >>$CONFIG_STATUS <<_ACEOF
 ac_cs_version="\\
-nb-sed config.status 20030823
+nbsed config.status 20031016
 configured by $0, generated by GNU Autoconf 2.57,
   with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
 



Home | Main Index | Thread Index | Old Index