mirror of
git://git.gnupg.org/gnupg.git
synced 2025-04-17 15:44:34 +02:00
(ac_pipe_works): Fixed BRE syntax \? -> \{0,1\}.
Reported by Todd Vierling.
This commit is contained in:
parent
0842905be3
commit
80343d5e76
@ -1,3 +1,8 @@
|
|||||||
|
2004-05-01 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
* acinclude.m4 (ac_pipe_works): Fixed BRE syntax \? -> \{0,1\}.
|
||||||
|
Reported by Todd Vierling.
|
||||||
|
|
||||||
2004-02-26 Werner Koch <wk@gnupg.org>
|
2004-02-26 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
Released 1.3.5.
|
Released 1.3.5.
|
||||||
|
3
TODO
3
TODO
@ -102,6 +102,9 @@
|
|||||||
|
|
||||||
* export-secret-subkey where only one of the subkeys gets exported.
|
* export-secret-subkey where only one of the subkeys gets exported.
|
||||||
|
|
||||||
|
* Add the NEWSIG status.
|
||||||
|
|
||||||
|
|
||||||
Things we won't do
|
Things we won't do
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
@ -587,7 +587,7 @@ extern "C" {
|
|||||||
|
|
||||||
EOF
|
EOF
|
||||||
# Now generate the symbol file.
|
# Now generate the symbol file.
|
||||||
sed 's/^.* _\?\(.*\)$/extern char \1;/' < "$ac_nlist" >> conftest.c
|
sed 's/^.* _\{0,1\}\(.*\)$/extern char \1;/' < "$ac_nlist" >> conftest.c
|
||||||
|
|
||||||
cat <<EOF >> conftest.c
|
cat <<EOF >> conftest.c
|
||||||
#if defined (__STDC__) && __STDC__
|
#if defined (__STDC__) && __STDC__
|
||||||
@ -609,7 +609,7 @@ dld_preloaded_symbols[] =
|
|||||||
changequote([,])dnl
|
changequote([,])dnl
|
||||||
{
|
{
|
||||||
EOF
|
EOF
|
||||||
sed 's/^_\?\(.*\) _\?\(.*\)$/ {"\1", (__ptr_t) \&\2},/' < "$ac_nlist" >> conftest.c
|
sed 's/^_\{0,1\}/\(.*\) _\{0,1\}\(.*\)$/ {"\1", (__ptr_t) \&\2},/' < "$ac_nlist" >> conftest.c
|
||||||
cat <<\EOF >> conftest.c
|
cat <<\EOF >> conftest.c
|
||||||
{0, (__ptr_t) 0}
|
{0, (__ptr_t) 0}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user