library: Rename to libproc2

The newlib library used to be called libproc-2 but the new
name is preferred.

References:
 https://www.freelists.org/post/procps/Next-for-newlib,3

Signed-off-by: Craig Small <csmall@dropbear.xyz>
This commit is contained in:
Craig Small 2022-08-29 20:38:17 +10:00
parent 47a8676625
commit 1502648ff9
6 changed files with 30 additions and 29 deletions

10
.gitignore vendored
View File

@ -44,11 +44,11 @@ src/pkill
src/pmap src/pmap
src/pidwait src/pidwait
procps-ng-*.tar.xz procps-ng-*.tar.xz
proc/.depend library/.depend
proc/libproc-2.la library/libproc2.la
proc/libproc-2.pc library/libproc2.pc
proc/Makefile library/Makefile
proc/Makefile.in library/Makefile.in
src/ps/Makefile src/ps/Makefile
src/ps/Makefile.in src/ps/Makefile.in
src/ps/pscommand src/ps/pscommand

View File

@ -25,10 +25,10 @@ SUBDIRS = \
testsuite testsuite
AM_CFLAGS = -Ilibrary/include AM_CFLAGS = -Ilibrary/include
LDADD = ./library/libproc-2.la $(CYGWINFLAGS) LDADD = ./library/libproc2.la $(CYGWINFLAGS)
if CYGWIN if CYGWIN
AM_LDFLAGS += ./library/libproc-2.la $(CYGWINFLAGS) AM_LDFLAGS += ./library/libproc2.la $(CYGWINFLAGS)
endif endif
transform = transform =
@ -67,7 +67,7 @@ usrbin_exec_PROGRAMS += \
endif endif
lib_LTLIBRARIES = \ lib_LTLIBRARIES = \
library/libproc-2.la library/libproc2.la
dist_man_MANS = \ dist_man_MANS = \
man/free.1 \ man/free.1 \
@ -235,26 +235,26 @@ src_vmstat_SOURCES = src/vmstat.c local/strutils.c local/fileutils.c
# See http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html # See http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
LIBproc_2_CURRENT=0 LIBproc2_CURRENT=0
LIBproc_2_REVISION=0 LIBproc2_REVISION=0
LIBproc_2_AGE=0 LIBproc2_AGE=0
library_libproc_2_la_LIBADD = $(LIB_KPARTS) library_libproc2_la_LIBADD = $(LIB_KPARTS)
if WITH_SYSTEMD if WITH_SYSTEMD
library_libproc_2_la_LIBADD += @SYSTEMD_LIBS@ library_libproc2_la_LIBADD += @SYSTEMD_LIBS@
endif endif
if WITH_ELOGIND if WITH_ELOGIND
library_libproc_2_la_LIBADD += @ELOGIND_LIBS@ library_libproc2_la_LIBADD += @ELOGIND_LIBS@
endif endif
library_libproc_2_la_LDFLAGS = \ library_libproc2_la_LDFLAGS = \
-version-info $(LIBproc_2_CURRENT):$(LIBproc_2_REVISION):$(LIBproc_2_AGE) \ -version-info $(LIBproc2_CURRENT):$(LIBproc2_REVISION):$(LIBproc2_AGE) \
-no-undefined \ -no-undefined \
-Wl,--version-script=$(top_srcdir)/library/libproc-2.sym -Wl,--version-script=$(top_srcdir)/library/libproc2.sym
library_libproc_2_la_SOURCES = \ library_libproc2_la_SOURCES = \
library/devname.c \ library/devname.c \
library/include/devname.h \ library/include/devname.h \
library/diskstats.c \ library/diskstats.c \
@ -287,8 +287,8 @@ library_libproc_2_la_SOURCES = \
library/uptime.c \ library/uptime.c \
library/include/xtra-procps-debug.h library/include/xtra-procps-debug.h
library_libproc_2_la_includedir = $(includedir)/procps/ library_libproc2_la_includedir = $(includedir)/procps/
library_libproc_2_la_include_HEADERS = \ library_libproc2_la_include_HEADERS = \
library/include/diskstats.h \ library/include/diskstats.h \
library/include/meminfo.h \ library/include/meminfo.h \
library/include/misc.h \ library/include/misc.h \
@ -300,9 +300,9 @@ library_libproc_2_la_include_HEADERS = \
pkgconfigdir = $(libdir)/pkgconfig pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = \ pkgconfig_DATA = \
library/libproc-2.pc library/libproc2.pc
EXTRA_DIST += library/libproc-2.sym EXTRA_DIST += library/libproc2.sym
# ps/pscommand # ps/pscommand
@ -348,17 +348,17 @@ check_PROGRAMS += \
library/tests/test_namespace library/tests/test_namespace
library_tests_test_Itemtables_SOURCES = library/tests/test_Itemtables.c library_tests_test_Itemtables_SOURCES = library/tests/test_Itemtables.c
library_tests_test_Itemtables_LDADD = library/libproc-2.la library_tests_test_Itemtables_LDADD = library/libproc2.la
library_tests_test_pids_SOURCES = library/tests/test_pids.c library_tests_test_pids_SOURCES = library/tests/test_pids.c
library_tests_test_pids_LDADD = library/libproc-2.la library_tests_test_pids_LDADD = library/libproc2.la
library_tests_test_uptime_SOURCES = library/tests/test_uptime.c library_tests_test_uptime_SOURCES = library/tests/test_uptime.c
library_tests_test_uptime_LDADD = library/libproc-2.la library_tests_test_uptime_LDADD = library/libproc2.la
library_tests_test_sysinfo_SOURCES = library/tests/test_sysinfo.c library_tests_test_sysinfo_SOURCES = library/tests/test_sysinfo.c
library_tests_test_sysinfo_LDADD = library/libproc-2.la library_tests_test_sysinfo_LDADD = library/libproc2.la
library_tests_test_version_SOURCES = library/tests/test_version.c library_tests_test_version_SOURCES = library/tests/test_version.c
library_tests_test_version_LDADD = library/libproc-2.la library_tests_test_version_LDADD = library/libproc2.la
library_tests_test_namespace_SOURCES = library/tests/test_namespace.c library_tests_test_namespace_SOURCES = library/tests/test_namespace.c
library_tests_test_namespace_LDADD = library/libproc-2.la library_tests_test_namespace_LDADD = library/libproc2.la
if CYGWIN if CYGWIN
src_skill_LDADD = $(CYGWINFLAGS) src_skill_LDADD = $(CYGWINFLAGS)

1
NEWS
View File

@ -2,6 +2,7 @@ procps-ng-NEXT
* library * library
Re-add elogind support merge #151 Re-add elogind support merge #151
Used memory is Total - Available Used memory is Total - Available
Renaming, it is now libproc2
* pidwait: Better warning if pidfd_open not implemented * pidwait: Better warning if pidfd_open not implemented
* pmap: Dont reuse stdin filehandle issue #231 * pmap: Dont reuse stdin filehandle issue #231
* ps: threads again display when -L is used with -q issue #234 * ps: threads again display when -L is used with -q issue #234

View File

@ -395,6 +395,6 @@ AC_CONFIG_FILES([Makefile
local/Makefile local/Makefile
po-man/Makefile po-man/Makefile
po/Makefile.in po/Makefile.in
library/libproc-2.pc library/libproc2.pc
testsuite/Makefile]) testsuite/Makefile])
AC_OUTPUT AC_OUTPUT