grep-commit
[Top][All Lists]
Advanced

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

grep branch, master, updated. v3.11-17-gf80b106


From: Paul Eggert
Subject: grep branch, master, updated. v3.11-17-gf80b106
Date: Sat, 9 Sep 2023 21:54:28 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "grep".

The branch, master has been updated
       via  f80b106d15b4e21c7d06ea5b76f1d5cf45dc52ee (commit)
       via  3e926715c89f1d457c6e730c960ebe899e0039e9 (commit)
       via  1dbdcdc4c88f6dfd81bd0a66fea060ed8d199fad (commit)
      from  180e8dd674ede48727c03647dd36c1f8c3379667 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/grep.git/commit/?id=f80b106d15b4e21c7d06ea5b76f1d5cf45dc52ee


commit f80b106d15b4e21c7d06ea5b76f1d5cf45dc52ee
Author: Paul Eggert <eggert@cs.ucla.edu>
Date:   Sat Sep 9 18:51:51 2023 -0700

    grep: omit propername, as it’s not used
    
    Omit Gnulib’s propername module, as it has not been used since my
    commit 3c0a36e514237132db711bfef57a74c64592c4e2 dated Thu Dec 20
    16:35:55 2018 -0800.
    * bootstrap.conf (avoided_gnulib_modules):
    Do not avoid mbchar, as it is no longer pulled in by propername.
    (gnulib_modules): Remove propername.
    * src/Makefile.am (LDADD):
    * tests/Makefile.am (LDADD): Remove $(LIBICONV); no longer needed.
    * src/grep.c: Do not include propername.h.

diff --git a/bootstrap.conf b/bootstrap.conf
index 3dd9bd7..66430d9 100644
--- a/bootstrap.conf
+++ b/bootstrap.conf
@@ -17,7 +17,6 @@
 
 avoided_gnulib_modules='
   --avoid=lock-tests
-  --avoid=mbchar
   --avoid=mbuiter
   --avoid=mbuiterf
   --avoid=mbrtowc-tests
@@ -76,7 +75,6 @@ minmax
 obstack
 openat-safer
 perl
-propername
 rawmemchr
 readme-release
 realloc-gnu
diff --git a/src/Makefile.am b/src/Makefile.am
index f8555fe..426339f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -42,7 +42,7 @@ noinst_HEADERS = grep.h kwset.h search.h system.h
 # But libgreputils.a must also follow $(LIBINTL), since libintl uses
 # replacement functions defined in libgreputils.a.
 LDADD = \
-  ../lib/libgreputils.a $(LIBINTL) ../lib/libgreputils.a $(LIBICONV) \
+  ../lib/libgreputils.a $(LIBINTL) ../lib/libgreputils.a \
   $(HARD_LOCALE_LIB) $(LIBC32CONV) \
   $(LIBSIGSEGV) $(LIBUNISTRING) $(MBRTOWC_LIB) $(SETLOCALE_NULL_LIB) \
   $(LIBTHREAD)
diff --git a/src/grep.c b/src/grep.c
index a2a1c1f..8bda853 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -45,7 +45,6 @@
 #include "grep.h"
 #include "hash.h"
 #include "intprops.h"
-#include "propername.h"
 #include "safe-read.h"
 #include "search.h"
 #include "c-strcase.h"
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 94430a9..9c09c43 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -42,7 +42,7 @@ AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
 # Tell the linker to omit references to unused shared libraries.
 AM_LDFLAGS = $(IGNORE_UNUSED_LIBRARIES_CFLAGS)
 LDADD = ../lib/libgreputils.a $(LIBINTL) ../lib/libgreputils.a \
-  $(HARD_LOCALE_LIB) $(LIBC32CONV) $(LIBCSTACK) $(LIBICONV) \
+  $(HARD_LOCALE_LIB) $(LIBC32CONV) $(LIBCSTACK) \
   $(LIBSIGSEGV) $(LIBUNISTRING) $(MBRTOWC_LIB) $(SETLOCALE_NULL_LIB) \
   $(LIBTHREAD)
 

http://git.savannah.gnu.org/cgit/grep.git/commit/?id=3e926715c89f1d457c6e730c960ebe899e0039e9


commit f80b106d15b4e21c7d06ea5b76f1d5cf45dc52ee
Author: Paul Eggert <eggert@cs.ucla.edu>
Date:   Sat Sep 9 18:51:51 2023 -0700

    grep: omit propername, as it’s not used
    
    Omit Gnulib’s propername module, as it has not been used since my
    commit 3c0a36e514237132db711bfef57a74c64592c4e2 dated Thu Dec 20
    16:35:55 2018 -0800.
    * bootstrap.conf (avoided_gnulib_modules):
    Do not avoid mbchar, as it is no longer pulled in by propername.
    (gnulib_modules): Remove propername.
    * src/Makefile.am (LDADD):
    * tests/Makefile.am (LDADD): Remove $(LIBICONV); no longer needed.
    * src/grep.c: Do not include propername.h.

diff --git a/bootstrap.conf b/bootstrap.conf
index 3dd9bd7..66430d9 100644
--- a/bootstrap.conf
+++ b/bootstrap.conf
@@ -17,7 +17,6 @@
 
 avoided_gnulib_modules='
   --avoid=lock-tests
-  --avoid=mbchar
   --avoid=mbuiter
   --avoid=mbuiterf
   --avoid=mbrtowc-tests
@@ -76,7 +75,6 @@ minmax
 obstack
 openat-safer
 perl
-propername
 rawmemchr
 readme-release
 realloc-gnu
diff --git a/src/Makefile.am b/src/Makefile.am
index f8555fe..426339f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -42,7 +42,7 @@ noinst_HEADERS = grep.h kwset.h search.h system.h
 # But libgreputils.a must also follow $(LIBINTL), since libintl uses
 # replacement functions defined in libgreputils.a.
 LDADD = \
-  ../lib/libgreputils.a $(LIBINTL) ../lib/libgreputils.a $(LIBICONV) \
+  ../lib/libgreputils.a $(LIBINTL) ../lib/libgreputils.a \
   $(HARD_LOCALE_LIB) $(LIBC32CONV) \
   $(LIBSIGSEGV) $(LIBUNISTRING) $(MBRTOWC_LIB) $(SETLOCALE_NULL_LIB) \
   $(LIBTHREAD)
diff --git a/src/grep.c b/src/grep.c
index a2a1c1f..8bda853 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -45,7 +45,6 @@
 #include "grep.h"
 #include "hash.h"
 #include "intprops.h"
-#include "propername.h"
 #include "safe-read.h"
 #include "search.h"
 #include "c-strcase.h"
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 94430a9..9c09c43 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -42,7 +42,7 @@ AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
 # Tell the linker to omit references to unused shared libraries.
 AM_LDFLAGS = $(IGNORE_UNUSED_LIBRARIES_CFLAGS)
 LDADD = ../lib/libgreputils.a $(LIBINTL) ../lib/libgreputils.a \
-  $(HARD_LOCALE_LIB) $(LIBC32CONV) $(LIBCSTACK) $(LIBICONV) \
+  $(HARD_LOCALE_LIB) $(LIBC32CONV) $(LIBCSTACK) \
   $(LIBSIGSEGV) $(LIBUNISTRING) $(MBRTOWC_LIB) $(SETLOCALE_NULL_LIB) \
   $(LIBTHREAD)
 

http://git.savannah.gnu.org/cgit/grep.git/commit/?id=1dbdcdc4c88f6dfd81bd0a66fea060ed8d199fad


commit f80b106d15b4e21c7d06ea5b76f1d5cf45dc52ee
Author: Paul Eggert <eggert@cs.ucla.edu>
Date:   Sat Sep 9 18:51:51 2023 -0700

    grep: omit propername, as it’s not used
    
    Omit Gnulib’s propername module, as it has not been used since my
    commit 3c0a36e514237132db711bfef57a74c64592c4e2 dated Thu Dec 20
    16:35:55 2018 -0800.
    * bootstrap.conf (avoided_gnulib_modules):
    Do not avoid mbchar, as it is no longer pulled in by propername.
    (gnulib_modules): Remove propername.
    * src/Makefile.am (LDADD):
    * tests/Makefile.am (LDADD): Remove $(LIBICONV); no longer needed.
    * src/grep.c: Do not include propername.h.

diff --git a/bootstrap.conf b/bootstrap.conf
index 3dd9bd7..66430d9 100644
--- a/bootstrap.conf
+++ b/bootstrap.conf
@@ -17,7 +17,6 @@
 
 avoided_gnulib_modules='
   --avoid=lock-tests
-  --avoid=mbchar
   --avoid=mbuiter
   --avoid=mbuiterf
   --avoid=mbrtowc-tests
@@ -76,7 +75,6 @@ minmax
 obstack
 openat-safer
 perl
-propername
 rawmemchr
 readme-release
 realloc-gnu
diff --git a/src/Makefile.am b/src/Makefile.am
index f8555fe..426339f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -42,7 +42,7 @@ noinst_HEADERS = grep.h kwset.h search.h system.h
 # But libgreputils.a must also follow $(LIBINTL), since libintl uses
 # replacement functions defined in libgreputils.a.
 LDADD = \
-  ../lib/libgreputils.a $(LIBINTL) ../lib/libgreputils.a $(LIBICONV) \
+  ../lib/libgreputils.a $(LIBINTL) ../lib/libgreputils.a \
   $(HARD_LOCALE_LIB) $(LIBC32CONV) \
   $(LIBSIGSEGV) $(LIBUNISTRING) $(MBRTOWC_LIB) $(SETLOCALE_NULL_LIB) \
   $(LIBTHREAD)
diff --git a/src/grep.c b/src/grep.c
index a2a1c1f..8bda853 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -45,7 +45,6 @@
 #include "grep.h"
 #include "hash.h"
 #include "intprops.h"
-#include "propername.h"
 #include "safe-read.h"
 #include "search.h"
 #include "c-strcase.h"
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 94430a9..9c09c43 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -42,7 +42,7 @@ AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
 # Tell the linker to omit references to unused shared libraries.
 AM_LDFLAGS = $(IGNORE_UNUSED_LIBRARIES_CFLAGS)
 LDADD = ../lib/libgreputils.a $(LIBINTL) ../lib/libgreputils.a \
-  $(HARD_LOCALE_LIB) $(LIBC32CONV) $(LIBCSTACK) $(LIBICONV) \
+  $(HARD_LOCALE_LIB) $(LIBC32CONV) $(LIBCSTACK) \
   $(LIBSIGSEGV) $(LIBUNISTRING) $(MBRTOWC_LIB) $(SETLOCALE_NULL_LIB) \
   $(LIBTHREAD)
 

-----------------------------------------------------------------------

Summary of changes:
 bootstrap.conf    | 4 +++-
 gnulib            | 2 +-
 src/Makefile.am   | 2 +-
 src/grep.c        | 1 -
 tests/Makefile.am | 2 +-
 5 files changed, 6 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
grep



reply via email to

[Prev in Thread] Current Thread [Next in Thread]