mirror of
git://git.gnupg.org/gnupg.git
synced 2025-04-13 22:21:09 +02:00
* acinclude.m4 (GNUPG_CHECK_ENDIAN): When crosscompiling assume
little only for Intel CPUs. * configure.ac: Check for ranlib and ar. This is required for cross compiling.
This commit is contained in:
parent
930290698a
commit
62df762d9e
10
ChangeLog
10
ChangeLog
@ -1,3 +1,11 @@
|
|||||||
|
2003-03-24 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
* acinclude.m4 (GNUPG_CHECK_ENDIAN): When crosscompiling assume
|
||||||
|
little only for Intel CPUs.
|
||||||
|
|
||||||
|
* configure.ac: Check for ranlib and ar. This is required for
|
||||||
|
cross compiling.
|
||||||
|
|
||||||
2003-03-11 David Shaw <dshaw@jabberwocky.com>
|
2003-03-11 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* configure.ac: Look for res_query so we can use DNS SRV, and add
|
* configure.ac: Look for res_query so we can use DNS SRV, and add
|
||||||
@ -1178,7 +1186,7 @@ Fri Feb 13 19:43:41 1998 Werner Koch (wk@isil.d.shuttle.de)
|
|||||||
* Makefile.am: Likewise
|
* Makefile.am: Likewise
|
||||||
|
|
||||||
|
|
||||||
Copyright 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
Copyright 1998,1999,2000,2001,2002,2003 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is free software; as a special exception the author gives
|
This file is free software; as a special exception the author gives
|
||||||
unlimited permission to copy and/or distribute it, with or without
|
unlimited permission to copy and/or distribute it, with or without
|
||||||
|
3
TODO
3
TODO
@ -96,6 +96,9 @@
|
|||||||
* When presenting the result of a verification show the user ID with
|
* When presenting the result of a verification show the user ID with
|
||||||
the highest trust level first instead of the primary one.
|
the highest trust level first instead of the primary one.
|
||||||
|
|
||||||
|
* allow the use of option in gpg.conf.
|
||||||
|
|
||||||
|
* export-secret-subkey where only one of the subkeys gets exported.
|
||||||
|
|
||||||
Things we won't do
|
Things we won't do
|
||||||
------------------
|
------------------
|
||||||
|
18
acinclude.m4
18
acinclude.m4
@ -1,5 +1,5 @@
|
|||||||
dnl macros to configure gnupg
|
dnl macros to configure gnupg
|
||||||
dnl Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
dnl Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
|
||||||
dnl
|
dnl
|
||||||
dnl This file is part of GnuPG.
|
dnl This file is part of GnuPG.
|
||||||
dnl
|
dnl
|
||||||
@ -106,13 +106,21 @@ AC_DEFUN(GNUPG_CHECK_DOCBOOK_TO_TEXI,
|
|||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
dnl GNUPG_CHECK_ENDIAN
|
dnl GNUPG_CHECK_ENDIAN
|
||||||
dnl define either LITTLE_ENDIAN_HOST or BIG_ENDIAN_HOST
|
dnl define either LITTLE_ENDIAN_HOST or BIG_ENDIAN_HOST
|
||||||
dnl
|
dnl
|
||||||
define(GNUPG_CHECK_ENDIAN,
|
define(GNUPG_CHECK_ENDIAN,
|
||||||
[ if test "$cross_compiling" = yes; then
|
[
|
||||||
AC_MSG_WARN(cross compiling; assuming little endianess)
|
tmp_assumed_endian=big
|
||||||
|
if test "$cross_compiling" = yes; then
|
||||||
|
case "$host_cpu" in
|
||||||
|
i[345678]* )
|
||||||
|
tmp_assumed_endian=little
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
AC_MSG_WARN(cross compiling; assuming $tmp_assumed_endian endianess)
|
||||||
fi
|
fi
|
||||||
AC_MSG_CHECKING(endianess)
|
AC_MSG_CHECKING(endianess)
|
||||||
AC_CACHE_VAL(gnupg_cv_c_endian,
|
AC_CACHE_VAL(gnupg_cv_c_endian,
|
||||||
@ -141,7 +149,7 @@ define(GNUPG_CHECK_ENDIAN,
|
|||||||
}],
|
}],
|
||||||
gnupg_cv_c_endian=little,
|
gnupg_cv_c_endian=little,
|
||||||
gnupg_cv_c_endian=big,
|
gnupg_cv_c_endian=big,
|
||||||
gnupg_cv_c_endian=little
|
gnupg_cv_c_endian=$tmp_assumed_endian
|
||||||
)
|
)
|
||||||
fi
|
fi
|
||||||
])
|
])
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
dnl Configure.ac script for GnuPG
|
dnl Configure.ac script for GnuPG
|
||||||
dnl Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
dnl Copyright (C) 1998, 1999, 2000, 2001, 2002,
|
||||||
|
dnl 2003 Free Software Foundation, Inc.
|
||||||
dnl
|
dnl
|
||||||
dnl This file is part of GnuPG.
|
dnl This file is part of GnuPG.
|
||||||
dnl
|
dnl
|
||||||
@ -336,6 +337,8 @@ AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
|
|||||||
AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
|
AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
|
||||||
AC_PROG_CC
|
AC_PROG_CC
|
||||||
AC_PROG_CPP
|
AC_PROG_CPP
|
||||||
|
AC_PROG_RANLIB
|
||||||
|
AC_CHECK_TOOL(AR, ar, :)
|
||||||
AC_PATH_PROG(PERL,"perl")
|
AC_PATH_PROG(PERL,"perl")
|
||||||
AC_ISC_POSIX
|
AC_ISC_POSIX
|
||||||
AC_SYS_LARGEFILE
|
AC_SYS_LARGEFILE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user