mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-23 15:07:03 +01:00
See ChangeLog: Fri Mar 17 17:50:25 CET 2000 Werner Koch
This commit is contained in:
parent
4cb08d4960
commit
1ebcae2a92
@ -1,3 +1,10 @@
|
|||||||
|
Fri Mar 17 17:50:25 CET 2000 Werner Koch <wk@openit.de>
|
||||||
|
|
||||||
|
* acinclude.m4 (GNUPG_CHECK_MLOCK): Do librt check only when
|
||||||
|
we can't link a test progra,. This way GNU systems don't need
|
||||||
|
to link against linrt.
|
||||||
|
(GNUPG_CHECK_IPC): Fixed use of TRY_COMPILE macro. From Tim Mooney.
|
||||||
|
|
||||||
2000-03-14 12:07:54 Werner Koch (wk@habibti.openit.de)
|
2000-03-14 12:07:54 Werner Koch (wk@habibti.openit.de)
|
||||||
|
|
||||||
* acinclude.m4 (GNUPG_SYS_SYMBOL_UNDERSCORE): Add support for
|
* acinclude.m4 (GNUPG_SYS_SYMBOL_UNDERSCORE): Add support for
|
||||||
|
2
NOTES
2
NOTES
@ -14,3 +14,5 @@ Some other reported cpu-vendor-os strings:
|
|||||||
gpg 1.0.1 okay with MP-RAS 3.02.01 Edition 5 using gcc 2.95.2 and EGD
|
gpg 1.0.1 okay with MP-RAS 3.02.01 Edition 5 using gcc 2.95.2 and EGD
|
||||||
By <CSpeicher@eisi.com>
|
By <CSpeicher@eisi.com>
|
||||||
|
|
||||||
|
gpg 1.0.1 okay with 4.0.1 BSDI BSD/OS 4.0 i386
|
||||||
|
|
||||||
|
2
THANKS
2
THANKS
@ -3,6 +3,7 @@ reporting problems, suggesting various improvements or submitting actual
|
|||||||
code. Here is a list of those people. Help me keep it complete and free of
|
code. Here is a list of those people. Help me keep it complete and free of
|
||||||
errors.
|
errors.
|
||||||
|
|
||||||
|
Adam Mitchell adam@cafe21.org
|
||||||
Alec Habig habig@budoe2.bu.edu
|
Alec Habig habig@budoe2.bu.edu
|
||||||
Allan Clark allanc@sco.com
|
Allan Clark allanc@sco.com
|
||||||
Anand Kumria wildfire@progsoc.uts.edu.au
|
Anand Kumria wildfire@progsoc.uts.edu.au
|
||||||
@ -112,6 +113,7 @@ Steven Bakker steven@icoe.att.com
|
|||||||
Susanne Schultz schultz@hsp.de
|
Susanne Schultz schultz@hsp.de
|
||||||
Thiago Jung Bauermann jungmann@cwb.matrix.com.br
|
Thiago Jung Bauermann jungmann@cwb.matrix.com.br
|
||||||
Thomas Roessler roessler@guug.de
|
Thomas Roessler roessler@guug.de
|
||||||
|
Tim Mooney mooney@dogbert.cc.ndsu.nodak.edu
|
||||||
Tom Spindler dogcow@home.merit.edu
|
Tom Spindler dogcow@home.merit.edu
|
||||||
Tom Zerucha tzeruch@ceddec.com
|
Tom Zerucha tzeruch@ceddec.com
|
||||||
Tomas Fasth tomas.fasth@twinspot.net
|
Tomas Fasth tomas.fasth@twinspot.net
|
||||||
|
11
acinclude.m4
11
acinclude.m4
@ -293,7 +293,8 @@ define(GNUPG_CHECK_IPC,
|
|||||||
AC_TRY_COMPILE([#include <sys/types.h>
|
AC_TRY_COMPILE([#include <sys/types.h>
|
||||||
#include <sys/ipc.h>
|
#include <sys/ipc.h>
|
||||||
#include <sys/shm.h>],[
|
#include <sys/shm.h>],[
|
||||||
int foo( int shm_id ) { shmctl(shm_id, SHM_LOCK, 0); }
|
int shm_id;
|
||||||
|
shmctl(shm_id, SHM_LOCK, 0);
|
||||||
],
|
],
|
||||||
gnupg_cv_ipc_have_shm_lock="yes",
|
gnupg_cv_ipc_have_shm_lock="yes",
|
||||||
gnupg_cv_ipc_have_shm_lock="no"
|
gnupg_cv_ipc_have_shm_lock="no"
|
||||||
@ -318,8 +319,14 @@ dnl GNUPG_CHECK_MLOCK
|
|||||||
dnl
|
dnl
|
||||||
define(GNUPG_CHECK_MLOCK,
|
define(GNUPG_CHECK_MLOCK,
|
||||||
[ AC_CHECK_FUNCS(mlock)
|
[ AC_CHECK_FUNCS(mlock)
|
||||||
AC_CHECK_LIB(rt, mlock)
|
|
||||||
if test "$ac_cv_func_mlock" = "yes"; then
|
if test "$ac_cv_func_mlock" = "yes"; then
|
||||||
|
AC_TRY_LINK_FUNC(mlock,tmp=yes,tmp=no)
|
||||||
|
if test $tmp = no; then
|
||||||
|
# We could not link a test program, so check whether
|
||||||
|
# we can do it by linking against librt
|
||||||
|
# this adds librt to the path. This adds librt to LIBS.
|
||||||
|
AC_CHECK_LIB(rt, mlock)
|
||||||
|
fi
|
||||||
AC_MSG_CHECKING(whether mlock is broken)
|
AC_MSG_CHECKING(whether mlock is broken)
|
||||||
AC_CACHE_VAL(gnupg_cv_have_broken_mlock,
|
AC_CACHE_VAL(gnupg_cv_have_broken_mlock,
|
||||||
AC_TRY_RUN([
|
AC_TRY_RUN([
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Fri Mar 17 17:50:25 CET 2000 Werner Koch <wk@openit.de>
|
||||||
|
|
||||||
|
* config.links (sparc64-unknown-linux-gnu): use udic module.
|
||||||
|
From Adam Mitchell.
|
||||||
|
|
||||||
2000-03-14 12:03:56 Werner Koch (wk@habibti.openit.de)
|
2000-03-14 12:03:56 Werner Koch (wk@habibti.openit.de)
|
||||||
|
|
||||||
* Makefile.am: Do not use .s and .S files but a temp names, so that
|
* Makefile.am: Do not use .s and .S files but a temp names, so that
|
||||||
|
@ -81,6 +81,13 @@ case "${target}" in
|
|||||||
path="pa7100 hppa1.1 hppa"
|
path="pa7100 hppa1.1 hppa"
|
||||||
mpi_extra_modules="udiv-qrnnd"
|
mpi_extra_modules="udiv-qrnnd"
|
||||||
;;
|
;;
|
||||||
|
sparc64-*-linux-gnu)
|
||||||
|
# An extra rule because we have an report for this one only.
|
||||||
|
# Should be compared against the next GMP version
|
||||||
|
echo '/* configured for sparc64-*-linux-gnu */' >>./mpi/asm-syntax.h
|
||||||
|
path="sparc32v8 sparc32"
|
||||||
|
mpi_extra_modules="udiv"
|
||||||
|
;;
|
||||||
sparc9*-*-* | sparc64*-*-* | ultrasparc*-*-*)
|
sparc9*-*-* | sparc64*-*-* | ultrasparc*-*-*)
|
||||||
echo '/* configured for sparc9 or higher */' >>./mpi/asm-syntax.h
|
echo '/* configured for sparc9 or higher */' >>./mpi/asm-syntax.h
|
||||||
path="sparc32v8 sparc32"
|
path="sparc32v8 sparc32"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user