* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2023-05-12 1:39 Sam James
0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-05-12 1:39 UTC (permalink / raw
To: gentoo-commits
commit: b926cd079443bb9d0420b11201d4bd88a7aacd08
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 21 16:36:05 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May 12 01:39:38 2023 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=b926cd07
build: Fix libc path configure test for mold
bfd, gold, lld, and mold all support `-Wl,--trace`, which has cleaner
output than `-Wl,--verbose`. mold doesn't output anything with the
latter, so the test didn't support that until now. The only difference
between them now is that mold prefixes its output with `trace: ` whereas
the others do not.
I checked the Solaris linker, but that does not support `-Wl,--trace`.
Bug: https://bugs.gentoo.org/830463
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
Closes: https://github.com/gentoo/sandbox/pull/5
Signed-off-by: Sam James <sam <AT> gentoo.org>
(cherry picked from commit 190300def3160ca39bd8590d1bbc7305ae07cc5b)
configure.ac | 15 +++++----------
1 file changed, 5 insertions(+), 10 deletions(-)
diff --git a/configure.ac b/configure.ac
index ace4173..a274580 100644
--- a/configure.ac
+++ b/configure.ac
@@ -363,16 +363,11 @@ try_link() {
) 1>&AS_MESSAGE_LOG_FD
}
LIBC_PATH=$(AS_IF(
- dnl GNU linker (bfd & gold) searching for
- dnl (bfd) "attempt to open /usr/lib/gcc/x86_64-pc-linux-gnu/8.3.0/../../../../lib64/libc.so succeeded"
- dnl (gold) "/usr/lib/gcc/x86_64-pc-linux-gnu/8.3.0/../../../../x86_64-pc-linux-gnu/bin/ld: Attempt to open /lib64/libc.so.6 succeeded"
- dnl if log does not contain "attempt" word then it's not a GNU linker
- [try_link -Wl,--verbose && grep -q '[[Aa]]ttempt' libctest.log],
- [$AWK '/[[Aa]]ttempt to open/ { if (($(NF-1) ~ /\/libc\.so/) && ($NF == "succeeded")) LIBC = $(NF-1); }; END {print LIBC}' libctest.log],
- dnl LLVM lld searching for latest (successful) entry of
- dnl "ld.lld: /usr/lib/gcc/x86_64-pc-linux-gnu/8.3.0/../../../../lib64/libc.so"
- dnl "ld.lld: /lib64/libc.so.6"
- [try_link -Wl,--verbose],
+ dnl GNU linkers (bfd, gold), LLVM lld, mold - searching for latest entry of:
+ dnl "/usr/lib/gcc/x86_64-pc-linux-gnu/8.3.0/../../../../lib64/libc.so"
+ dnl "/lib64/libc.so.6"
+ dnl Note that mold prefixes output with "trace: " whereas others do not.
+ [try_link -Wl,--trace],
[$EGREP -o '/[[^ ]]*/libc.so.*' libctest.log | tail -n1],
dnl Solaris linker
[try_link -Wl,-m],
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2023-06-13 18:35 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2023-06-13 18:35 UTC (permalink / raw
To: gentoo-commits
commit: 4228dca81575872fcd964b514916ee214816f053
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 13 18:34:06 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Tue Jun 13 18:34:06 2023 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=4228dca8
v2.31
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index a274580..b78cf98 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
-AC_INIT([sandbox], [2.30], [sandbox@gentoo.org])
+AC_INIT([sandbox], [2.31], [sandbox@gentoo.org])
AM_INIT_AUTOMAKE([1.15 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AC_CONFIG_HEADER([config.h])
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2023-06-21 14:48 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2023-06-21 14:48 UTC (permalink / raw
To: gentoo-commits
commit: a5fcf9744ad6e60cb4de8db47f1aa6ce42c51479
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 21 14:45:41 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Wed Jun 21 14:45:41 2023 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=a5fcf974
v2.32
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index b78cf98..ca5ed5b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
-AC_INIT([sandbox], [2.31], [sandbox@gentoo.org])
+AC_INIT([sandbox], [2.32], [sandbox@gentoo.org])
AM_INIT_AUTOMAKE([1.15 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AC_CONFIG_HEADER([config.h])
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2023-06-23 17:25 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2023-06-23 17:25 UTC (permalink / raw
To: gentoo-commits
commit: a38d957a825418fefeebc4212cc9e6d34ecdd8b0
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 23 03:14:58 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri Jun 23 17:25:40 2023 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=a38d957a
configure: update libc grep expression
On Alpine, libc's SONAME is 'libc.musl-x86_64.so.1'.
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
(cherry picked from commit 3ccc775d6f98c1917408bc3a370cfd6d3d789d50)
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index ca5ed5b..a030dce 100644
--- a/configure.ac
+++ b/configure.ac
@@ -389,7 +389,7 @@ echo "int main(void) { return 0; }" > libctest.c
$CC $CFLAGS $CPPFLAGS $LDFLAGS -o libctest libctest.c
LIBC_VERSION=$(
$READELF -d libctest | \
- $EGREP 'NEEDED.* \@<:@libc\.so' | \
+ $EGREP 'NEEDED.* \@<:@libc\..*so' | \
$AWK '{print $NF}' | [sed -e 's:\[::' -e 's:\]::']
)
rm -f libctest*
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2023-06-30 16:57 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2023-06-30 16:57 UTC (permalink / raw
To: gentoo-commits
commit: 4d23fef44f592455b59793199afe96f239cd5923
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 30 16:53:42 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri Jun 30 16:53:42 2023 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=4d23fef4
v2.33
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index a030dce..8cdca8b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
-AC_INIT([sandbox], [2.32], [sandbox@gentoo.org])
+AC_INIT([sandbox], [2.33], [sandbox@gentoo.org])
AM_INIT_AUTOMAKE([1.15 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AC_CONFIG_HEADER([config.h])
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2023-07-01 23:54 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2023-07-01 23:54 UTC (permalink / raw
To: gentoo-commits
commit: 3cbe56b72b0aad22b87fb1abdd8d3a902acf07b6
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 1 23:53:43 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sat Jul 1 23:53:43 2023 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=3cbe56b7
v2.34
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 8cdca8b..d55ac79 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
-AC_INIT([sandbox], [2.33], [sandbox@gentoo.org])
+AC_INIT([sandbox], [2.34], [sandbox@gentoo.org])
AM_INIT_AUTOMAKE([1.15 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AC_CONFIG_HEADER([config.h])
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2023-07-08 3:08 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2023-07-08 3:08 UTC (permalink / raw
To: gentoo-commits
commit: c642111b431f0822234dd2f2b4411832616ab0b0
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 8 03:08:09 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sat Jul 8 03:08:09 2023 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=c642111b
v2.35
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index d55ac79..c3e772f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
-AC_INIT([sandbox], [2.34], [sandbox@gentoo.org])
+AC_INIT([sandbox], [2.35], [sandbox@gentoo.org])
AM_INIT_AUTOMAKE([1.15 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AC_CONFIG_HEADER([config.h])
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2023-07-10 15:54 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2023-07-10 15:54 UTC (permalink / raw
To: gentoo-commits
commit: 96838cf81d6fe0d6f8b68fb188844666387bdf57
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 10 15:52:52 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon Jul 10 15:52:52 2023 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=96838cf8
v2.36
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index c3e772f..0a3c4fc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
-AC_INIT([sandbox], [2.35], [sandbox@gentoo.org])
+AC_INIT([sandbox], [2.36], [sandbox@gentoo.org])
AM_INIT_AUTOMAKE([1.15 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AC_CONFIG_HEADER([config.h])
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2023-07-17 13:57 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2023-07-17 13:57 UTC (permalink / raw
To: gentoo-commits
commit: 816bd9fc97f130df92e2c7e0cda5f472588a6d86
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 17 13:55:53 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon Jul 17 13:55:53 2023 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=816bd9fc
v2.37
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 0a3c4fc..de0dc2b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
-AC_INIT([sandbox], [2.36], [sandbox@gentoo.org])
+AC_INIT([sandbox], [2.37], [sandbox@gentoo.org])
AM_INIT_AUTOMAKE([1.15 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AC_CONFIG_HEADER([config.h])
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2023-08-05 4:33 Sam James
0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-08-05 4:33 UTC (permalink / raw
To: gentoo-commits
commit: 38507cc25cebe228d72cb75a2ab4acfaacf2a5fe
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 21 15:04:23 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Aug 5 04:32:44 2023 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=38507cc2
configure.ac: cleanup error messages
Signed-off-by: Sam James <sam <AT> gentoo.org>
(cherry picked from commit 4f42e1984227012797030839b5e757a6da147141)
configure.ac | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/configure.ac b/configure.ac
index 8eb60a4..847bc4c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -293,18 +293,18 @@ if test x"$va_copy" != xva_copy ; then
)
fi
-dnl Verify people aren't doing stupid shit
+dnl Avoid footguns.
if test x"$enable_static" != xno ; then
- AC_MSG_ERROR([dont be a Kumba, building a libsandbox.a is stupid])
+ AC_MSG_ERROR([Building a static libsandbox.a is not supported])
fi
if test x"$enable_shared" != xyes ; then
- AC_MSG_ERROR([dont be a Kumba, omitting a libsandbox.so is stupid])
+ AC_MSG_ERROR([Omitting a libsandbox.so is not supported])
fi
if echo " $CFLAGS " | $EGREP ' -static ' >/dev/null 2>&1; then
- AC_MSG_ERROR([dont be a Kumba, using -static in CFLAGS is stupid])
+ AC_MSG_ERROR([Using -static in CFLAGS is not supported])
fi
if echo " $LDFLAGS " | $EGREP ' -static ' >/dev/null 2>&1; then
- AC_MSG_ERROR([dont be a Kumba, using -static in LDFLAGS is stupid])
+ AC_MSG_ERROR([Using -static in LDFLAGS is not supported])
fi
dnl Some libc's like those on bsd have dlopen() in libc, and not libdl
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2023-08-05 4:33 Sam James
0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-08-05 4:33 UTC (permalink / raw
To: gentoo-commits
commit: fa7aa29903a6dc57fdb5dd3b6b8c4c5a7ad7126f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 21 15:05:56 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Aug 5 04:32:48 2023 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=fa7aa299
configure.ac: fix whitespace
Signed-off-by: Sam James <sam <AT> gentoo.org>
(cherry picked from commit 62ce93feaa51f9e3a490ef522e0bad91f666ebe1)
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 847bc4c..ba878ef 100644
--- a/configure.ac
+++ b/configure.ac
@@ -343,7 +343,7 @@ if test x"$have_rtld_next" = xyes ; then
AC_DEFINE([HAVE_RTLD_NEXT], [1], [Have RTLD_NEXT enabled libc])
fi
-dnl we need to handle symbols differently based upon their version,
+dnl we need to handle symbols differently based upon their version,
dnl but we have to know which symbols the libc supports first
AC_MSG_CHECKING([libc path])
echo "int main(void) { return 0; }" > libctest.c
@@ -381,7 +381,7 @@ AC_DEFINE_UNQUOTED([LIBC_PATH], ["$LIBC_PATH"], [Full path to the libc])
AC_MSG_RESULT([$LIBC_PATH])
AC_SUBST([LIBC_PATH])
-dnl when intercepting libc calls, we have to know the name of the
+dnl when intercepting libc calls, we have to know the name of the
dnl libc to load and search with dl*() calls
AC_MSG_CHECKING([libc version])
dnl the sed script at the end here looks funny but it's ok ...
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2023-08-06 0:49 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2023-08-06 0:49 UTC (permalink / raw
To: gentoo-commits
commit: ebaca399acb215cf4dd8a06a74a6d436047b3711
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 6 00:41:15 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Aug 6 00:41:15 2023 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=ebaca399
v2.38
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index ba878ef..7d32dd7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
-AC_INIT([sandbox], [2.37], [sandbox@gentoo.org])
+AC_INIT([sandbox], [2.38], [sandbox@gentoo.org])
AM_INIT_AUTOMAKE([1.15 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AC_CONFIG_HEADER([config.h])
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2024-06-27 15:25 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2024-06-27 15:25 UTC (permalink / raw
To: gentoo-commits
commit: e4a1a406303a2da84018709f7feb25d0bbc6b63a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 4 12:03:31 2024 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Thu Jun 27 15:24:21 2024 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=e4a1a406
autogen.sh: sys-devel/autoconf-archive -> dev-build/autoconf-archive
Signed-off-by: Sam James <sam <AT> gentoo.org>
(cherry picked from commit 673825e437dfeb4ea6e86a4e8b0129fd044c9aec)
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
autogen.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/autogen.sh b/autogen.sh
index 432152b..2223e51 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -7,7 +7,7 @@ touch ChangeLog
# whatever updated version is on the host
rm -f m4/*.m4
-# not everyone has sys-devel/autoconf-archive installed
+# not everyone has dev-build/autoconf-archive installed
has() { [[ " ${*:2} " == *" $1 "* ]] ; }
import_ax() {
local macro content m4 found lm4s=()
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2024-11-04 19:15 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2024-11-04 19:15 UTC (permalink / raw
To: gentoo-commits
commit: d2d9dbe6b589467f1fe275dae407aaca4dd01c03
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 27 18:24:04 2024 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Thu Jun 27 18:24:04 2024 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=d2d9dbe6
v2.39
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 7d32dd7..969daf9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
-AC_INIT([sandbox], [2.38], [sandbox@gentoo.org])
+AC_INIT([sandbox], [2.39], [sandbox@gentoo.org])
AM_INIT_AUTOMAKE([1.15 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AC_CONFIG_HEADER([config.h])
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2024-11-04 19:27 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2024-11-04 19:27 UTC (permalink / raw
To: gentoo-commits
commit: 86155511a2877a8a7b58917a39d851797b1ce407
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 4 19:16:40 2024 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon Nov 4 19:16:40 2024 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=86155511
v2.40
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 969daf9..9c47986 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
-AC_INIT([sandbox], [2.39], [sandbox@gentoo.org])
+AC_INIT([sandbox], [2.40], [sandbox@gentoo.org])
AM_INIT_AUTOMAKE([1.15 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AC_CONFIG_HEADER([config.h])
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2024-12-22 3:49 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2024-12-22 3:49 UTC (permalink / raw
To: gentoo-commits
commit: 44676717ebf269026fece60b43014bd7038d6611
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 22 03:44:31 2024 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Dec 22 03:44:31 2024 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=44676717
v2.41
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 9c47986..961f65c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
-AC_INIT([sandbox], [2.40], [sandbox@gentoo.org])
+AC_INIT([sandbox], [2.41], [sandbox@gentoo.org])
AM_INIT_AUTOMAKE([1.15 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AC_CONFIG_HEADER([config.h])
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2024-12-22 19:19 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2024-12-22 19:19 UTC (permalink / raw
To: gentoo-commits
commit: aeac3be6578c4f0bffcb4a7f3147e9854f0aecec
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 22 19:13:23 2024 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Dec 22 19:13:23 2024 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=aeac3be6
v2.42
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 961f65c..ac43a2e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
-AC_INIT([sandbox], [2.41], [sandbox@gentoo.org])
+AC_INIT([sandbox], [2.42], [sandbox@gentoo.org])
AM_INIT_AUTOMAKE([1.15 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AC_CONFIG_HEADER([config.h])
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/sandbox:stable-2.x commit in: /
@ 2025-01-08 2:12 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2025-01-08 2:12 UTC (permalink / raw
To: gentoo-commits
commit: d75aebb58924e152123c82e9b48553f4e43c7218
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 6 19:36:15 2025 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Tue Jan 7 19:59:22 2025 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=d75aebb5
Drop obsolete check for trunctate length parameter type
This hasn't been used since f27622d796b1ee07a604b0fdb3a2c15c9e0c3343.
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
configure.ac | 12 ------------
1 file changed, 12 deletions(-)
diff --git a/configure.ac b/configure.ac
index d690440..2835794 100644
--- a/configure.ac
+++ b/configure.ac
@@ -309,18 +309,6 @@ dnl uClibc doesn't currently provide dlvsym() so lets
dnl verify the toolchain supports it
AC_CHECK_FUNCS([dlvsym])
-dnl when using libc5, (f)trucate's offset argument type is size_t with
-dnl libc5, but it's off_t with libc6 (glibc2).
-AC_MSG_CHECKING([truncate argument type])
-AC_EGREP_HEADER([truncate.*size_t], [unistd.h],
- [dnl
- AC_MSG_RESULT([size_t])
- AC_DEFINE([TRUNCATE_T], [size_t], [truncate arg type])
- ],[dnl
- AC_MSG_RESULT([off_t])
- AC_DEFINE([TRUNCATE_T], [off_t], [truncate arg type])
-])
-
dnl Check if libc provides RTLD_NEXT
AC_MSG_CHECKING([for RTLD_NEXT])
AC_TRY_COMPILE([
^ permalink raw reply related [flat|nested] 18+ messages in thread
end of thread, other threads:[~2025-01-08 2:12 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-23 17:25 [gentoo-commits] proj/sandbox:stable-2.x commit in: / Mike Gilbert
-- strict thread matches above, loose matches on Subject: below --
2025-01-08 2:12 Mike Gilbert
2024-12-22 19:19 Mike Gilbert
2024-12-22 3:49 Mike Gilbert
2024-11-04 19:27 Mike Gilbert
2024-11-04 19:15 Mike Gilbert
2024-06-27 15:25 Mike Gilbert
2023-08-06 0:49 Mike Gilbert
2023-08-05 4:33 Sam James
2023-08-05 4:33 Sam James
2023-07-17 13:57 Mike Gilbert
2023-07-10 15:54 Mike Gilbert
2023-07-08 3:08 Mike Gilbert
2023-07-01 23:54 Mike Gilbert
2023-06-30 16:57 Mike Gilbert
2023-06-21 14:48 Mike Gilbert
2023-06-13 18:35 Mike Gilbert
2023-05-12 1:39 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox