mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Never quit got this working. Thought I'd save before moving on.
This commit is contained in:
3
jni/Android.mk
Normal file
3
jni/Android.mk
Normal file
@@ -0,0 +1,3 @@
|
||||
# Recursively sources all Android.mk files in subdirs:
|
||||
include $(call all-subdir-makefiles)
|
||||
|
||||
13
jni/final_key/Android.mk
Normal file
13
jni/final_key/Android.mk
Normal file
@@ -0,0 +1,13 @@
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := final-key
|
||||
|
||||
LOCAL_SRC_FILES := final_key.c
|
||||
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../libgcrypt/src $(LOCAL_PATH)/../libgpg-error/src/ #$(LOCAL_PATH)/../mpi
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := libgpg-error libgcrypt
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
20
jni/final_key/final_key.c
Normal file
20
jni/final_key/final_key.c
Normal file
@@ -0,0 +1,20 @@
|
||||
#include <jni.h>
|
||||
#include <gcrypt.h>
|
||||
|
||||
|
||||
jbyteArray Java_com_keepassdroid_crypto_FinalKey_nativeTransformMasterKey(JNIEnv *env, jclass this,
|
||||
jbyteArray seed, jbyteArray key, jint rounds) {
|
||||
|
||||
gcry_error_t error;
|
||||
gcry_cipher_hd_t *cipher;
|
||||
|
||||
error = _gcry_cipher_open(cipher, GCRY_CIPHER_AES, GCRY_CIPHER_MODE_ECB, 0);
|
||||
|
||||
return key;
|
||||
}
|
||||
|
||||
jbyteArray Java_com_keepassdroid_crypto_FinalKey_nativeReflect(JNIEnv *env, jclass this,
|
||||
jbyteArray key) {
|
||||
|
||||
return key;
|
||||
}
|
||||
78
jni/libgcrypt/Android.mk
Normal file
78
jni/libgcrypt/Android.mk
Normal file
@@ -0,0 +1,78 @@
|
||||
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := libgcrypt
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
src/visibility.c \
|
||||
src/misc.c \
|
||||
src/global.c \
|
||||
src/sexp.c \
|
||||
src/hwfeatures.c \
|
||||
src/stdmem.c \
|
||||
src/secmem.c \
|
||||
src/missing-string.c \
|
||||
src/module.c \
|
||||
src/fips.c \
|
||||
src/ath.c \
|
||||
src/hmac256.c \
|
||||
cipher/cipher.c \
|
||||
cipher/pubkey.c \
|
||||
cipher/ac.c \
|
||||
cipher/md.c \
|
||||
cipher/hmac-tests.c \
|
||||
cipher/primegen.c \
|
||||
cipher/hash-common.c \
|
||||
cipher/arcfour.c \
|
||||
cipher/blowfish.c \
|
||||
cipher/cast5.c \
|
||||
cipher/crc.c \
|
||||
cipher/des.c \
|
||||
cipher/dsa.c \
|
||||
cipher/elgamal.c \
|
||||
cipher/ecc.c \
|
||||
cipher/md4.c \
|
||||
cipher/md5.c \
|
||||
cipher/rijndael.c \
|
||||
cipher/rmd160.c \
|
||||
cipher/rsa.c \
|
||||
cipher/seed.c \
|
||||
cipher/serpent.c \
|
||||
cipher/sha1.c \
|
||||
cipher/sha256.c \
|
||||
cipher/sha512.c \
|
||||
cipher/tiger.c \
|
||||
cipher/whirlpool.c \
|
||||
cipher/twofish.c \
|
||||
cipher/rfc2268.c \
|
||||
mpi/mpi-add.c \
|
||||
mpi/mpih-add1.c \
|
||||
mpi/mpi-bit.c \
|
||||
mpi/mpi-cmp.c \
|
||||
mpi/mpi-div.c \
|
||||
mpi/mpi-gcd.c \
|
||||
mpi/mpi-inline.c \
|
||||
mpi/mpi-inv.c \
|
||||
mpi/mpi-mul.c \
|
||||
mpi/mpih-mul1.c \
|
||||
mpi/mpi-mod.c \
|
||||
mpi/mpi-pow.c \
|
||||
mpi/mpi-mpow.c \
|
||||
mpi/mpi-scan.c \
|
||||
mpi/mpih-sub1.c \
|
||||
mpi/mpicoder.c \
|
||||
mpi/mpiutil.c \
|
||||
mpi/ec.c \
|
||||
mpi/mpih-div.c \
|
||||
random/random.c \
|
||||
random/random-csprng.c \
|
||||
random/random-fips.c \
|
||||
random/rndhw.c \
|
||||
random/rndlinux.c
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../libgpg-error/src/ $(LOCAL_PATH)/src $(LOCAL_PATH)/cipher $(LOCAL_PATH)/mpi $(LOCAL_PATH)/random
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := libgpg-error
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
717
jni/libgcrypt/Makefile
Normal file
717
jni/libgcrypt/Makefile
Normal file
@@ -0,0 +1,717 @@
|
||||
# Makefile.in generated by automake 1.10.1 from Makefile.am.
|
||||
# Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
# Copyright (C) 1992, 1999, 2000, 2002 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is part of Libgcrypt.
|
||||
#
|
||||
# Libgcrypt is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of
|
||||
# the License, or (at your option) any later version.
|
||||
#
|
||||
# Libgcrypt is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||
|
||||
pkgdatadir = $(datadir)/libgcrypt
|
||||
pkglibdir = $(libdir)/libgcrypt
|
||||
pkgincludedir = $(includedir)/libgcrypt
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-unknown-linux-gnu
|
||||
host_triplet = x86_64-unknown-linux-gnu
|
||||
subdir = .
|
||||
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in $(srcdir)/config.h.in \
|
||||
$(top_srcdir)/configure AUTHORS COPYING COPYING.LIB ChangeLog \
|
||||
INSTALL NEWS THANKS TODO compile config.guess config.sub \
|
||||
depcomp install-sh ltmain.sh missing mkinstalldirs
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/noexecstack.m4 $(top_srcdir)/m4/onceonly.m4 \
|
||||
$(top_srcdir)/m4/socklen.m4 $(top_srcdir)/m4/sys_socket_h.m4 \
|
||||
$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
||||
configure.lineno config.status.lineno
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
||||
html-recursive info-recursive install-data-recursive \
|
||||
install-dvi-recursive install-exec-recursive \
|
||||
install-html-recursive install-info-recursive \
|
||||
install-pdf-recursive install-ps-recursive install-recursive \
|
||||
installcheck-recursive installdirs-recursive pdf-recursive \
|
||||
ps-recursive uninstall-recursive
|
||||
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
||||
distclean-recursive maintainer-clean-recursive
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
distdir = $(PACKAGE)-$(VERSION)
|
||||
top_distdir = $(distdir)
|
||||
am__remove_distdir = \
|
||||
{ test ! -d $(distdir) \
|
||||
|| { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
|
||||
&& rm -fr $(distdir); }; }
|
||||
DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
|
||||
GZIP_ENV = --best
|
||||
distuninstallcheck_listfiles = find . -type f -print
|
||||
distcleancheck_listfiles = find . -type f -print
|
||||
ACLOCAL = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run aclocal-1.10
|
||||
AMTAR = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run tar
|
||||
AR = ar
|
||||
AS = as
|
||||
AUTOCONF = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run autoconf
|
||||
AUTOHEADER = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run autoheader
|
||||
AUTOMAKE = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run automake-1.10
|
||||
AWK = gawk
|
||||
BUILD_FILEVERSION =
|
||||
BUILD_REVISION = 1382
|
||||
BUILD_TIMESTAMP =
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
CCASDEPMODE = depmode=gcc3
|
||||
CCASFLAGS = -g -O2
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -g -O2 -fvisibility=hidden -Wall
|
||||
CPP = gcc -E
|
||||
CPPFLAGS =
|
||||
CXX = g++
|
||||
CXXCPP = g++ -E
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -g -O2
|
||||
CYGPATH_W = echo
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = dlltool
|
||||
DL_LIBS =
|
||||
ECHO = echo
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /bin/grep -E
|
||||
EXEEXT =
|
||||
F77 =
|
||||
FALLBACK_SOCKLEN_T = typedef socklen_t gcry_socklen_t;
|
||||
FFLAGS =
|
||||
GCRYPT_CIPHERS = arcfour.lo blowfish.lo cast5.lo des.lo rijndael.lo twofish.lo serpent.lo rfc2268.lo seed.lo camellia.lo camellia-glue.lo
|
||||
GCRYPT_DIGESTS = crc.lo md4.lo md5.lo sha256.lo sha512.lo tiger.lo whirlpool.lo rmd160.lo sha1.lo
|
||||
GCRYPT_PUBKEY_CIPHERS = dsa.lo rsa.lo elgamal.lo ecc.lo
|
||||
GCRYPT_RANDOM = rndlinux.lo
|
||||
GPG_ERROR_CFLAGS =
|
||||
GPG_ERROR_CONFIG = /usr/bin/gpg-error-config
|
||||
GPG_ERROR_LIBS = -lgpg-error
|
||||
GREP = /bin/grep
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
LDFLAGS =
|
||||
LIBGCRYPT_CIPHERS = arcfour blowfish cast5 des aes twofish serpent rfc2268 seed camellia
|
||||
LIBGCRYPT_CONFIG_API_VERSION = 1
|
||||
LIBGCRYPT_CONFIG_CFLAGS =
|
||||
LIBGCRYPT_CONFIG_LIBS = -lgcrypt
|
||||
LIBGCRYPT_DIGESTS = crc md4 md5 rmd160 sha1 sha256 sha512 tiger whirlpool
|
||||
LIBGCRYPT_LT_AGE = 5
|
||||
LIBGCRYPT_LT_CURRENT = 16
|
||||
LIBGCRYPT_LT_REVISION = 2
|
||||
LIBGCRYPT_PUBKEY_CIPHERS = dsa elgamal rsa ecc
|
||||
LIBGCRYPT_THREAD_MODULES =
|
||||
LIBOBJS =
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS =
|
||||
MAINT = #
|
||||
MAKEINFO = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run makeinfo
|
||||
MKDIR_P = /bin/mkdir -p
|
||||
MPI_SFLAGS =
|
||||
NOEXECSTACK_FLAGS = -Wa,--noexecstack
|
||||
OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
PACKAGE = libgcrypt
|
||||
PACKAGE_BUGREPORT = bug-libgcrypt@gnupg.org
|
||||
PACKAGE_NAME = libgcrypt
|
||||
PACKAGE_STRING = libgcrypt 1.4.4
|
||||
PACKAGE_TARNAME = libgcrypt
|
||||
PACKAGE_VERSION = 1.4.4
|
||||
PATH_SEPARATOR = :
|
||||
PTH_CFLAGS =
|
||||
PTH_CONFIG =
|
||||
PTH_LIBS =
|
||||
RANLIB = ranlib
|
||||
RC = no
|
||||
SET_MAKE =
|
||||
SHELL = /bin/sh
|
||||
STRIP = strip
|
||||
SYS_SOCKET_H =
|
||||
VERSION = 1.4.4
|
||||
abs_builddir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt
|
||||
abs_srcdir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt
|
||||
abs_top_builddir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt
|
||||
abs_top_srcdir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt
|
||||
ac_ct_CC = gcc
|
||||
ac_ct_CXX = g++
|
||||
ac_ct_F77 =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = ${AMTAR} chof - "$$tardir"
|
||||
am__untar = ${AMTAR} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-unknown-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = unknown
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = x86_64-unknown-linux-gnu
|
||||
host_alias =
|
||||
host_cpu = x86_64
|
||||
host_os = linux-gnu
|
||||
host_vendor = unknown
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = $(SHELL) /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = /bin/mkdir -p
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_builddir = .
|
||||
top_srcdir = .
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
AUTOMAKE_OPTIONS = dist-bzip2
|
||||
DISTCHECK_CONFIGURE_FLAGS = --enable-random-daemon \
|
||||
--enable-ciphers=arcfour:blowfish:cast5:des:aes:twofish:serpent:rfc2268:seed:camellia
|
||||
|
||||
DIST_SUBDIRS = m4 mpi cipher random src doc tests
|
||||
SUBDIRS = mpi cipher random src doc tests
|
||||
EXTRA_DIST = autogen.sh README.SVN
|
||||
DISTCLEANFILES =
|
||||
all: config.h
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||
|
||||
.SUFFIXES:
|
||||
am--refresh:
|
||||
@:
|
||||
$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \
|
||||
cd $(srcdir) && $(AUTOMAKE) --gnu \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
echo ' $(SHELL) ./config.status'; \
|
||||
$(SHELL) ./config.status;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
||||
$(top_srcdir)/configure: # $(am__configure_deps)
|
||||
cd $(srcdir) && $(AUTOCONF)
|
||||
$(ACLOCAL_M4): # $(am__aclocal_m4_deps)
|
||||
cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
||||
|
||||
config.h: stamp-h1
|
||||
@if test ! -f $@; then \
|
||||
rm -f stamp-h1; \
|
||||
$(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
|
||||
else :; fi
|
||||
|
||||
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
|
||||
@rm -f stamp-h1
|
||||
cd $(top_builddir) && $(SHELL) ./config.status config.h
|
||||
$(srcdir)/config.h.in: # $(am__configure_deps)
|
||||
cd $(top_srcdir) && $(AUTOHEADER)
|
||||
rm -f stamp-h1
|
||||
touch $@
|
||||
|
||||
distclean-hdr:
|
||||
-rm -f config.h stamp-h1
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
distclean-libtool:
|
||||
-rm -f libtool
|
||||
|
||||
# This directory's subdirectories are mostly independent; you can cd
|
||||
# into them and run `make' without going through this Makefile.
|
||||
# To change the values of `make' variables: instead of editing Makefiles,
|
||||
# (1) if the variable is set in `config.status', edit `config.status'
|
||||
# (which will cause the Makefiles to be regenerated when you run `make');
|
||||
# (2) otherwise, pass the desired values on the `make' command line.
|
||||
$(RECURSIVE_TARGETS):
|
||||
@failcom='exit 1'; \
|
||||
for f in x $$MAKEFLAGS; do \
|
||||
case $$f in \
|
||||
*=* | --[!k]*);; \
|
||||
*k*) failcom='fail=yes';; \
|
||||
esac; \
|
||||
done; \
|
||||
dot_seen=no; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
dot_seen=yes; \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| eval $$failcom; \
|
||||
done; \
|
||||
if test "$$dot_seen" = "no"; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||
fi; test -z "$$fail"
|
||||
|
||||
$(RECURSIVE_CLEAN_TARGETS):
|
||||
@failcom='exit 1'; \
|
||||
for f in x $$MAKEFLAGS; do \
|
||||
case $$f in \
|
||||
*=* | --[!k]*);; \
|
||||
*k*) failcom='fail=yes';; \
|
||||
esac; \
|
||||
done; \
|
||||
dot_seen=no; \
|
||||
case "$@" in \
|
||||
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
||||
*) list='$(SUBDIRS)' ;; \
|
||||
esac; \
|
||||
rev=''; for subdir in $$list; do \
|
||||
if test "$$subdir" = "."; then :; else \
|
||||
rev="$$subdir $$rev"; \
|
||||
fi; \
|
||||
done; \
|
||||
rev="$$rev ."; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
for subdir in $$rev; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| eval $$failcom; \
|
||||
done && test -z "$$fail"
|
||||
tags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
||||
done
|
||||
ctags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
||||
done
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
||||
include_option=--etags-include; \
|
||||
empty_fix=.; \
|
||||
else \
|
||||
include_option=--include; \
|
||||
empty_fix=; \
|
||||
fi; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test ! -f $$subdir/TAGS || \
|
||||
tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
|
||||
fi; \
|
||||
done; \
|
||||
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$tags $$unique; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$tags $$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& cd $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) $$here
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
$(am__remove_distdir)
|
||||
test -d $(distdir) || mkdir $(distdir)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test -d "$(distdir)/$$subdir" \
|
||||
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|
||||
|| exit 1; \
|
||||
distdir=`$(am__cd) $(distdir) && pwd`; \
|
||||
top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
|
||||
(cd $$subdir && \
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$$top_distdir" \
|
||||
distdir="$$distdir/$$subdir" \
|
||||
am__remove_distdir=: \
|
||||
am__skip_length_check=: \
|
||||
distdir) \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$(top_distdir)" distdir="$(distdir)" \
|
||||
dist-hook
|
||||
-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
|
||||
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
||||
|| chmod -R a+r $(distdir)
|
||||
dist-gzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
$(am__remove_distdir)
|
||||
dist-bzip2: distdir
|
||||
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-lzma: distdir
|
||||
tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-tarZ: distdir
|
||||
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-shar: distdir
|
||||
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-zip: distdir
|
||||
-rm -f $(distdir).zip
|
||||
zip -rq $(distdir).zip $(distdir)
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist dist-all: distdir
|
||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
|
||||
$(am__remove_distdir)
|
||||
|
||||
# This target untars the dist file and tries a VPATH configuration. Then
|
||||
# it guarantees that the distribution is self-contained by making another
|
||||
# tarfile.
|
||||
distcheck: dist
|
||||
case '$(DIST_ARCHIVES)' in \
|
||||
*.tar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
|
||||
*.tar.bz2*) \
|
||||
bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
|
||||
*.tar.lzma*) \
|
||||
unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
|
||||
*.tar.Z*) \
|
||||
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
||||
*.shar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
|
||||
*.zip*) \
|
||||
unzip $(distdir).zip ;;\
|
||||
esac
|
||||
chmod -R a-w $(distdir); chmod a+w $(distdir)
|
||||
mkdir $(distdir)/_build
|
||||
mkdir $(distdir)/_inst
|
||||
chmod a-w $(distdir)
|
||||
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
||||
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
||||
&& cd $(distdir)/_build \
|
||||
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
||||
$(DISTCHECK_CONFIGURE_FLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
||||
distuninstallcheck \
|
||||
&& chmod -R a-w "$$dc_install_base" \
|
||||
&& ({ \
|
||||
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
||||
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
||||
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
||||
&& rm -rf "$$dc_destdir" \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
||||
&& rm -rf $(DIST_ARCHIVES) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck
|
||||
$(am__remove_distdir)
|
||||
@(echo "$(distdir) archives ready for distribution: "; \
|
||||
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
||||
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
||||
distuninstallcheck:
|
||||
@cd $(distuninstallcheck_dir) \
|
||||
&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
|
||||
|| { echo "ERROR: files left after uninstall:" ; \
|
||||
if test -n "$(DESTDIR)"; then \
|
||||
echo " (check DESTDIR support)"; \
|
||||
fi ; \
|
||||
$(distuninstallcheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
distcleancheck: distclean
|
||||
@if test '$(srcdir)' = . ; then \
|
||||
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
||||
exit 1 ; \
|
||||
fi
|
||||
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
||||
$(distcleancheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
check-am: all-am
|
||||
check: check-recursive
|
||||
all-am: Makefile config.h
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
install: install-recursive
|
||||
install-exec: install-exec-recursive
|
||||
install-data: install-data-recursive
|
||||
uninstall: uninstall-recursive
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-recursive
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-recursive
|
||||
|
||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic distclean-hdr \
|
||||
distclean-libtool distclean-tags
|
||||
|
||||
dvi: dvi-recursive
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-recursive
|
||||
|
||||
info: info-recursive
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-recursive
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-recursive
|
||||
|
||||
install-info: install-info-recursive
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-recursive
|
||||
|
||||
install-ps: install-ps-recursive
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -rf $(top_srcdir)/autom4te.cache
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-recursive
|
||||
|
||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
||||
|
||||
pdf: pdf-recursive
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-recursive
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
|
||||
install-strip
|
||||
|
||||
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
|
||||
all all-am am--refresh check check-am clean clean-generic \
|
||||
clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
|
||||
dist-gzip dist-hook dist-lzma dist-shar dist-tarZ dist-zip \
|
||||
distcheck distclean distclean-generic distclean-hdr \
|
||||
distclean-libtool distclean-tags distcleancheck distdir \
|
||||
distuninstallcheck dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am install-man \
|
||||
install-pdf install-pdf-am install-ps install-ps-am \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
installdirs-am maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
|
||||
ps ps-am tags tags-recursive uninstall uninstall-am
|
||||
|
||||
|
||||
# Add all the files listed in "distfiles" files to the distribution,
|
||||
# apply version number s to some files and create a VERSION file which
|
||||
# we need for the Prereq: patch file trick.
|
||||
dist-hook:
|
||||
@set -e; \
|
||||
for file in `cd $(top_srcdir); \
|
||||
find mpi -type f -name distfiles`; do \
|
||||
dir=`dirname $$file` ; $(mkinstalldirs) $(distdir)/$$dir ; \
|
||||
for i in distfiles `cat $(top_srcdir)/$$file` ; do \
|
||||
ln $(top_srcdir)/$$dir/$$i $(distdir)/$$dir/$$i 2> /dev/null \
|
||||
|| cp -p $(top_srcdir)/$$dir/$$i $(distdir)/$$dir/$$i; \
|
||||
done ; \
|
||||
done
|
||||
@set -e; \
|
||||
echo "$(VERSION)" > $(distdir)/VERSION
|
||||
|
||||
stowinstall:
|
||||
$(MAKE) $(AM_MAKEFLAGS) install prefix=/usr/local/stow/libgcrypt
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
1
jni/libgcrypt/cipher/.deps/ac.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/ac.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/arcfour.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/arcfour.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/blowfish.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/blowfish.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/camellia-glue.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/camellia-glue.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/camellia.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/camellia.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/cast5.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/cast5.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/cipher.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/cipher.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/crc.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/crc.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/des.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/des.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/dsa.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/dsa.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/ecc.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/ecc.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/elgamal.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/elgamal.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/hash-common.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/hash-common.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/hmac-tests.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/hmac-tests.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/md.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/md.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/md4.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/md4.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/md5.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/md5.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/primegen.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/primegen.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/pubkey.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/pubkey.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/rfc2268.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/rfc2268.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/rijndael.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/rijndael.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/rmd160.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/rmd160.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/rsa.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/rsa.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/seed.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/seed.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/serpent.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/serpent.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/sha1.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/sha1.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/sha256.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/sha256.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/sha512.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/sha512.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/tiger.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/tiger.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/twofish.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/twofish.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/cipher/.deps/whirlpool.Plo
Normal file
1
jni/libgcrypt/cipher/.deps/whirlpool.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
41
jni/libgcrypt/cipher/Android.mk.bak
Normal file
41
jni/libgcrypt/cipher/Android.mk.bak
Normal file
@@ -0,0 +1,41 @@
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := libgcrypt-cipher
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
cipher.c \
|
||||
pubkey.c \
|
||||
ac.c \
|
||||
md.c \
|
||||
hmac-tests.c \
|
||||
primegen.c \
|
||||
hash-common.c \
|
||||
arcfour.c \
|
||||
blowfish.c \
|
||||
cast5.c \
|
||||
crc.c \
|
||||
des.c \
|
||||
dsa.c \
|
||||
elgamal.c \
|
||||
ecc.c \
|
||||
md4.c \
|
||||
md5.c \
|
||||
rijndael.c \
|
||||
rmd160.c \
|
||||
rsa.c \
|
||||
seed.c \
|
||||
serpent.c \
|
||||
sha1.c \
|
||||
sha256.c \
|
||||
sha512.c \
|
||||
tiger.c \
|
||||
whirlpool.c \
|
||||
twofish.c \
|
||||
rfc2268.c \
|
||||
camellia.c camellia-glue.c
|
||||
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../ $(LOCAL_PATH)/../src $(LOCAL_PATH)/../../libgpg-error/src/ $(LOCAL_PATH)/../mpi
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
568
jni/libgcrypt/cipher/Makefile
Normal file
568
jni/libgcrypt/cipher/Makefile
Normal file
@@ -0,0 +1,568 @@
|
||||
# Makefile.in generated by automake 1.10.1 from Makefile.am.
|
||||
# cipher/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
# Makefile for cipher modules
|
||||
# Copyright (C) 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is part of Libgcrypt.
|
||||
#
|
||||
# Libgcrypt is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of
|
||||
# the License, or (at your option) any later version.
|
||||
#
|
||||
# Libgcrypt is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
# Process this file with automake to produce Makefile.in
|
||||
|
||||
|
||||
pkgdatadir = $(datadir)/libgcrypt
|
||||
pkglibdir = $(libdir)/libgcrypt
|
||||
pkgincludedir = $(includedir)/libgcrypt
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-unknown-linux-gnu
|
||||
host_triplet = x86_64-unknown-linux-gnu
|
||||
subdir = cipher
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ChangeLog
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/noexecstack.m4 $(top_srcdir)/m4/onceonly.m4 \
|
||||
$(top_srcdir)/m4/socklen.m4 $(top_srcdir)/m4/sys_socket_h.m4 \
|
||||
$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
LTLIBRARIES = $(noinst_LTLIBRARIES)
|
||||
am__DEPENDENCIES_1 =
|
||||
am_libcipher_la_OBJECTS = cipher.lo pubkey.lo ac.lo md.lo \
|
||||
hmac-tests.lo primegen.lo hash-common.lo
|
||||
libcipher_la_OBJECTS = $(am_libcipher_la_OBJECTS)
|
||||
DEFAULT_INCLUDES = -I. -I$(top_builddir)
|
||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
SOURCES = $(libcipher_la_SOURCES) $(EXTRA_libcipher_la_SOURCES)
|
||||
DIST_SOURCES = $(libcipher_la_SOURCES) $(EXTRA_libcipher_la_SOURCES)
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run aclocal-1.10
|
||||
AMTAR = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run tar
|
||||
AR = ar
|
||||
AS = as
|
||||
AUTOCONF = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run autoconf
|
||||
AUTOHEADER = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run autoheader
|
||||
AUTOMAKE = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run automake-1.10
|
||||
AWK = gawk
|
||||
BUILD_FILEVERSION =
|
||||
BUILD_REVISION = 1382
|
||||
BUILD_TIMESTAMP =
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
CCASDEPMODE = depmode=gcc3
|
||||
CCASFLAGS = -g -O2
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -g -O2 -fvisibility=hidden -Wall
|
||||
CPP = gcc -E
|
||||
CPPFLAGS =
|
||||
CXX = g++
|
||||
CXXCPP = g++ -E
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -g -O2
|
||||
CYGPATH_W = echo
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = dlltool
|
||||
DL_LIBS =
|
||||
ECHO = echo
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /bin/grep -E
|
||||
EXEEXT =
|
||||
F77 =
|
||||
FALLBACK_SOCKLEN_T = typedef socklen_t gcry_socklen_t;
|
||||
FFLAGS =
|
||||
GCRYPT_CIPHERS = arcfour.lo blowfish.lo cast5.lo des.lo rijndael.lo twofish.lo serpent.lo rfc2268.lo seed.lo camellia.lo camellia-glue.lo
|
||||
GCRYPT_DIGESTS = crc.lo md4.lo md5.lo sha256.lo sha512.lo tiger.lo whirlpool.lo rmd160.lo sha1.lo
|
||||
GCRYPT_PUBKEY_CIPHERS = dsa.lo rsa.lo elgamal.lo ecc.lo
|
||||
GCRYPT_RANDOM = rndlinux.lo
|
||||
GPG_ERROR_CFLAGS =
|
||||
GPG_ERROR_CONFIG = /usr/bin/gpg-error-config
|
||||
GPG_ERROR_LIBS = -lgpg-error
|
||||
GREP = /bin/grep
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
LDFLAGS =
|
||||
LIBGCRYPT_CIPHERS = arcfour blowfish cast5 des aes twofish serpent rfc2268 seed camellia
|
||||
LIBGCRYPT_CONFIG_API_VERSION = 1
|
||||
LIBGCRYPT_CONFIG_CFLAGS =
|
||||
LIBGCRYPT_CONFIG_LIBS = -lgcrypt
|
||||
LIBGCRYPT_DIGESTS = crc md4 md5 rmd160 sha1 sha256 sha512 tiger whirlpool
|
||||
LIBGCRYPT_LT_AGE = 5
|
||||
LIBGCRYPT_LT_CURRENT = 16
|
||||
LIBGCRYPT_LT_REVISION = 2
|
||||
LIBGCRYPT_PUBKEY_CIPHERS = dsa elgamal rsa ecc
|
||||
LIBGCRYPT_THREAD_MODULES =
|
||||
LIBOBJS =
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS =
|
||||
MAINT = #
|
||||
MAKEINFO = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run makeinfo
|
||||
MKDIR_P = /bin/mkdir -p
|
||||
MPI_SFLAGS =
|
||||
NOEXECSTACK_FLAGS = -Wa,--noexecstack
|
||||
OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
PACKAGE = libgcrypt
|
||||
PACKAGE_BUGREPORT = bug-libgcrypt@gnupg.org
|
||||
PACKAGE_NAME = libgcrypt
|
||||
PACKAGE_STRING = libgcrypt 1.4.4
|
||||
PACKAGE_TARNAME = libgcrypt
|
||||
PACKAGE_VERSION = 1.4.4
|
||||
PATH_SEPARATOR = :
|
||||
PTH_CFLAGS =
|
||||
PTH_CONFIG =
|
||||
PTH_LIBS =
|
||||
RANLIB = ranlib
|
||||
RC = no
|
||||
SET_MAKE =
|
||||
SHELL = /bin/sh
|
||||
STRIP = strip
|
||||
SYS_SOCKET_H =
|
||||
VERSION = 1.4.4
|
||||
abs_builddir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/cipher
|
||||
abs_srcdir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/cipher
|
||||
abs_top_builddir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt
|
||||
abs_top_srcdir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt
|
||||
ac_ct_CC = gcc
|
||||
ac_ct_CXX = g++
|
||||
ac_ct_F77 =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = ${AMTAR} chof - "$$tardir"
|
||||
am__untar = ${AMTAR} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-unknown-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = unknown
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = x86_64-unknown-linux-gnu
|
||||
host_alias =
|
||||
host_cpu = x86_64
|
||||
host_os = linux-gnu
|
||||
host_vendor = unknown
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = $(SHELL) /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = /bin/mkdir -p
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_builddir = ..
|
||||
top_srcdir = ..
|
||||
EXTRA_DIST = Manifest
|
||||
|
||||
# Need to include ../src in addition to top_srcdir because gcrypt.h is
|
||||
# a built header.
|
||||
AM_CPPFLAGS = -I../src -I$(top_srcdir)/src
|
||||
AM_CFLAGS = $(GPG_ERROR_CFLAGS)
|
||||
noinst_LTLIBRARIES = libcipher.la
|
||||
GCRYPT_MODULES = arcfour.lo blowfish.lo cast5.lo des.lo rijndael.lo twofish.lo serpent.lo rfc2268.lo seed.lo camellia.lo camellia-glue.lo dsa.lo rsa.lo elgamal.lo ecc.lo crc.lo md4.lo md5.lo sha256.lo sha512.lo tiger.lo whirlpool.lo rmd160.lo sha1.lo
|
||||
libcipher_la_DEPENDENCIES = $(GCRYPT_MODULES)
|
||||
libcipher_la_LIBADD = $(GCRYPT_MODULES)
|
||||
libcipher_la_SOURCES = \
|
||||
cipher.c pubkey.c ac.c md.c \
|
||||
hmac-tests.c \
|
||||
bithelp.h \
|
||||
primegen.c \
|
||||
hash-common.c hash-common.h \
|
||||
rmd.h
|
||||
|
||||
EXTRA_libcipher_la_SOURCES = \
|
||||
arcfour.c \
|
||||
blowfish.c \
|
||||
cast5.c \
|
||||
crc.c \
|
||||
des.c \
|
||||
dsa.c \
|
||||
elgamal.c \
|
||||
ecc.c \
|
||||
md4.c \
|
||||
md5.c \
|
||||
rijndael.c rijndael-tables.h \
|
||||
rmd160.c \
|
||||
rsa.c \
|
||||
seed.c \
|
||||
serpent.c \
|
||||
sha1.c \
|
||||
sha256.c \
|
||||
sha512.c \
|
||||
tiger.c \
|
||||
whirlpool.c \
|
||||
twofish.c \
|
||||
rfc2268.c \
|
||||
camellia.c camellia.h camellia-glue.c
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .lo .o .obj
|
||||
$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu cipher/Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu cipher/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: # $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): # $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
clean-noinstLTLIBRARIES:
|
||||
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
|
||||
@list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
|
||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||
test "$$dir" != "$$p" || dir=.; \
|
||||
echo "rm -f \"$${dir}/so_locations\""; \
|
||||
rm -f "$${dir}/so_locations"; \
|
||||
done
|
||||
libcipher.la: $(libcipher_la_OBJECTS) $(libcipher_la_DEPENDENCIES)
|
||||
$(LINK) $(libcipher_la_OBJECTS) $(libcipher_la_LIBADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/ac.Plo
|
||||
include ./$(DEPDIR)/arcfour.Plo
|
||||
include ./$(DEPDIR)/blowfish.Plo
|
||||
include ./$(DEPDIR)/camellia-glue.Plo
|
||||
include ./$(DEPDIR)/camellia.Plo
|
||||
include ./$(DEPDIR)/cast5.Plo
|
||||
include ./$(DEPDIR)/cipher.Plo
|
||||
include ./$(DEPDIR)/crc.Plo
|
||||
include ./$(DEPDIR)/des.Plo
|
||||
include ./$(DEPDIR)/dsa.Plo
|
||||
include ./$(DEPDIR)/ecc.Plo
|
||||
include ./$(DEPDIR)/elgamal.Plo
|
||||
include ./$(DEPDIR)/hash-common.Plo
|
||||
include ./$(DEPDIR)/hmac-tests.Plo
|
||||
include ./$(DEPDIR)/md.Plo
|
||||
include ./$(DEPDIR)/md4.Plo
|
||||
include ./$(DEPDIR)/md5.Plo
|
||||
include ./$(DEPDIR)/primegen.Plo
|
||||
include ./$(DEPDIR)/pubkey.Plo
|
||||
include ./$(DEPDIR)/rfc2268.Plo
|
||||
include ./$(DEPDIR)/rijndael.Plo
|
||||
include ./$(DEPDIR)/rmd160.Plo
|
||||
include ./$(DEPDIR)/rsa.Plo
|
||||
include ./$(DEPDIR)/seed.Plo
|
||||
include ./$(DEPDIR)/serpent.Plo
|
||||
include ./$(DEPDIR)/sha1.Plo
|
||||
include ./$(DEPDIR)/sha256.Plo
|
||||
include ./$(DEPDIR)/sha512.Plo
|
||||
include ./$(DEPDIR)/tiger.Plo
|
||||
include ./$(DEPDIR)/twofish.Plo
|
||||
include ./$(DEPDIR)/whirlpool.Plo
|
||||
|
||||
.c.o:
|
||||
$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(COMPILE) -c $<
|
||||
|
||||
.c.obj:
|
||||
$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
# source='$<' object='$@' libtool=yes \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$tags $$unique; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$tags $$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& cd $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) $$here
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(LTLIBRARIES)
|
||||
installdirs:
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
|
||||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-noinstLTLIBRARIES ctags distclean \
|
||||
distclean-compile distclean-generic distclean-libtool \
|
||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am install-man \
|
||||
install-pdf install-pdf-am install-ps install-ps-am \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
maintainer-clean maintainer-clean-generic mostlyclean \
|
||||
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
|
||||
pdf pdf-am ps ps-am tags uninstall uninstall-am
|
||||
|
||||
|
||||
# We need to lower the optimization for this module.
|
||||
tiger.o: $(srcdir)/tiger.c
|
||||
`echo $(COMPILE) -c $(srcdir)/tiger.c | sed -e 's/-O[2-9s]*/-O1/g' `
|
||||
|
||||
tiger.lo: $(srcdir)/tiger.c
|
||||
`echo $(LTCOMPILE) -c $(srcdir)/tiger.c | sed -e 's/-O[2-9s]*/-O1/g' `
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
415
jni/libgcrypt/config.h
Normal file
415
jni/libgcrypt/config.h
Normal file
@@ -0,0 +1,415 @@
|
||||
/* config.h. Generated from config.h.in by configure. */
|
||||
/* config.h.in. Generated from configure.ac by autoheader. */
|
||||
|
||||
|
||||
#ifndef _GCRYPT_CONFIG_H_INCLUDED
|
||||
#define _GCRYPT_CONFIG_H_INCLUDED
|
||||
/* need this, because some autoconf tests rely on this (e.g. stpcpy)
|
||||
* and it should be used for new programs */
|
||||
#define _GNU_SOURCE 1
|
||||
|
||||
|
||||
/* Subversion revision used to build this package */
|
||||
#define BUILD_REVISION "1382"
|
||||
|
||||
/* configure did not test for endianess */
|
||||
/* #undef DISABLED_ENDIAN_CHECK */
|
||||
|
||||
/* Define if you don't want the default EGD socket name. For details see
|
||||
cipher/rndegd.c */
|
||||
#define EGD_SOCKET_NAME ""
|
||||
|
||||
/* Define to support an HMAC based integrity check */
|
||||
/* #undef ENABLE_HMAC_BINARY_CHECK */
|
||||
|
||||
/* Enable support for the PadLock engine. */
|
||||
#define ENABLE_PADLOCK_SUPPORT 1
|
||||
|
||||
/* Define to use the GNU C visibility attribute. */
|
||||
#define GCRY_USE_VISIBILITY 1
|
||||
|
||||
/* The default error source for libgcrypt. */
|
||||
#define GPG_ERR_SOURCE_DEFAULT GPG_ERR_SOURCE_GCRYPT
|
||||
|
||||
/* Define to 1 if you have the `atexit' function. */
|
||||
#define HAVE_ATEXIT 1
|
||||
|
||||
/* Defined if the mlock() call does not work */
|
||||
/* #undef HAVE_BROKEN_MLOCK */
|
||||
|
||||
/* Defined if a `byte' is typedef'd */
|
||||
/* #undef HAVE_BYTE_TYPEDEF */
|
||||
|
||||
/* Define to 1 if you have the `clock_gettime' function. */
|
||||
/* #undef HAVE_CLOCK_GETTIME */
|
||||
|
||||
/* Define to 1 if you have the declaration of `sys_siglist', and to 0 if you
|
||||
don't. */
|
||||
#define HAVE_DECL_SYS_SIGLIST 1
|
||||
|
||||
/* defined if the system supports a random device */
|
||||
#define HAVE_DEV_RANDOM 1
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
#define HAVE_DLFCN_H 1
|
||||
|
||||
/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
|
||||
/* #undef HAVE_DOPRNT */
|
||||
|
||||
/* defined if we run on some of the PCDOS like systems (DOS, Windoze. OS/2)
|
||||
with special properties like no file modes */
|
||||
/* #undef HAVE_DOSISH_SYSTEM */
|
||||
|
||||
/* defined if we must run on a stupid file system */
|
||||
/* #undef HAVE_DRIVE_LETTERS */
|
||||
|
||||
/* Define to 1 if you have the `fcntl' function. */
|
||||
#define HAVE_FCNTL 1
|
||||
|
||||
/* Define to 1 if you have the `ftruncate' function. */
|
||||
#define HAVE_FTRUNCATE 1
|
||||
|
||||
/* Define to 1 if you have the `gethrtime' function. */
|
||||
/* #undef HAVE_GETHRTIME */
|
||||
|
||||
/* Define to 1 if you have the `getpagesize' function. */
|
||||
#define HAVE_GETPAGESIZE 1
|
||||
|
||||
/* Define to 1 if you have the `getrusage' function. */
|
||||
#define HAVE_GETRUSAGE 1
|
||||
|
||||
/* Define to 1 if you have the `gettimeofday' function. */
|
||||
#define HAVE_GETTIMEOFDAY 1
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#define HAVE_INTTYPES_H 1
|
||||
|
||||
/* Define to 1 if you have the `rt' library (-lrt). */
|
||||
/* #undef HAVE_LIBRT */
|
||||
|
||||
/* Define to 1 if you have the `memmove' function. */
|
||||
#define HAVE_MEMMOVE 1
|
||||
|
||||
/* Define to 1 if you have the <memory.h> header file. */
|
||||
#define HAVE_MEMORY_H 1
|
||||
|
||||
/* Defined if the system supports an mlock() call */
|
||||
#define HAVE_MLOCK 1
|
||||
|
||||
/* Define to 1 if you have the `mmap' function. */
|
||||
#define HAVE_MMAP 1
|
||||
|
||||
/* Defined if the GNU Pth is available */
|
||||
/* #undef HAVE_PTH */
|
||||
|
||||
/* Define to 1 if you have the `raise' function. */
|
||||
#define HAVE_RAISE 1
|
||||
|
||||
/* Define to 1 if you have the `rand' function. */
|
||||
#define HAVE_RAND 1
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#define HAVE_STDINT_H 1
|
||||
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#define HAVE_STDLIB_H 1
|
||||
|
||||
/* Define to 1 if you have the `stpcpy' function. */
|
||||
/*#define HAVE_STPCPY 1 */
|
||||
|
||||
/* Define to 1 if you have the `strcasecmp' function. */
|
||||
#define HAVE_STRCASECMP 1
|
||||
|
||||
/* Define to 1 if you have the `strerror' function. */
|
||||
#define HAVE_STRERROR 1
|
||||
|
||||
/* Define to 1 if you have the `stricmp' function. */
|
||||
/* #undef HAVE_STRICMP */
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#define HAVE_STRINGS_H 1
|
||||
|
||||
/* Define to 1 if you have the <string.h> header file. */
|
||||
#define HAVE_STRING_H 1
|
||||
|
||||
/* Define to 1 if you have the `strtoul' function. */
|
||||
#define HAVE_STRTOUL 1
|
||||
|
||||
/* Define to 1 if you have the `sysconf' function. */
|
||||
#define HAVE_SYSCONF 1
|
||||
|
||||
/* Define to 1 if you have the `syslog' function. */
|
||||
#define HAVE_SYSLOG 1
|
||||
|
||||
/* Define to 1 if you have the <sys/capability.h> header file. */
|
||||
/* #undef HAVE_SYS_CAPABILITY_H */
|
||||
|
||||
/* Define to 1 if you have the <sys/mman.h> header file. */
|
||||
/* #undef HAVE_SYS_MMAN_H */
|
||||
|
||||
/* Define to 1 if you have the <sys/select.h> header file. */
|
||||
#define HAVE_SYS_SELECT_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/socket.h> header file. */
|
||||
#define HAVE_SYS_SOCKET_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
#define HAVE_SYS_STAT_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
#define HAVE_SYS_TYPES_H 1
|
||||
|
||||
/* Defined if a `u16' is typedef'd */
|
||||
/* #undef HAVE_U16_TYPEDEF */
|
||||
|
||||
/* Defined if a `u32' is typedef'd */
|
||||
/* #undef HAVE_U32_TYPEDEF */
|
||||
|
||||
/* Define to 1 if the system has the type `uintptr_t'. */
|
||||
#define HAVE_UINTPTR_T 1
|
||||
|
||||
/* Defined if a `ulong' is typedef'd */
|
||||
/*#define HAVE_ULONG_TYPEDEF 1 */
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
#define HAVE_UNISTD_H 1
|
||||
|
||||
/* Defined if a `ushort' is typedef'd */
|
||||
/* #define HAVE_USHORT_TYPEDEF 1 */
|
||||
|
||||
/* Define to 1 if you have the `vprintf' function. */
|
||||
#define HAVE_VPRINTF 1
|
||||
|
||||
/* Defined if we run on a W32 API based system */
|
||||
/* #undef HAVE_W32_SYSTEM */
|
||||
|
||||
/* Define to 1 if you have the `wait4' function. */
|
||||
#define HAVE_WAIT4 1
|
||||
|
||||
/* Define to 1 if you have the `waitpid' function. */
|
||||
#define HAVE_WAITPID 1
|
||||
|
||||
/* Define to 1 if you have the <winsock2.h> header file. */
|
||||
/* #undef HAVE_WINSOCK2_H */
|
||||
|
||||
/* Define to 1 if you have the <ws2tcpip.h> header file. */
|
||||
/* #undef HAVE_WS2TCPIP_H */
|
||||
|
||||
/* Defined if this is not a regular release */
|
||||
/* #undef IS_DEVELOPMENT_VERSION */
|
||||
|
||||
/* List of available cipher algorithms */
|
||||
#define LIBGCRYPT_CIPHERS "arcfour:blowfish:cast5:des:aes:twofish:serpent:rfc2268:seed:camellia"
|
||||
|
||||
/* List of available digest algorithms */
|
||||
#define LIBGCRYPT_DIGESTS "crc:md4:md5:rmd160:sha1:sha256:sha512:tiger:whirlpool"
|
||||
|
||||
/* List of available public key cipher algorithms */
|
||||
#define LIBGCRYPT_PUBKEY_CIPHERS "dsa:elgamal:rsa:ecc"
|
||||
|
||||
/* Define to use the (obsolete) malloc guarding feature */
|
||||
/* #undef M_GUARD */
|
||||
|
||||
/* defined to the name of the strong random device */
|
||||
#define NAME_OF_DEV_RANDOM "/dev/random"
|
||||
|
||||
/* defined to the name of the weaker random device */
|
||||
#define NAME_OF_DEV_URANDOM "/dev/urandom"
|
||||
|
||||
/* Define to 1 if your C compiler doesn't accept -c and -o together. */
|
||||
/* #undef NO_MINUS_C_MINUS_O */
|
||||
|
||||
/* Name of this package */
|
||||
#define PACKAGE "libgcrypt"
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#define PACKAGE_BUGREPORT "bug-libgcrypt@gnupg.org"
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#define PACKAGE_NAME "libgcrypt"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "libgcrypt 1.4.4"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "libgcrypt"
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "1.4.4"
|
||||
|
||||
/* A human readable text with the name of the OS */
|
||||
#define PRINTABLE_OS_NAME "GNU/Linux"
|
||||
|
||||
/* Define as the return type of signal handlers (`int' or `void'). */
|
||||
#define RETSIGTYPE void
|
||||
|
||||
/* The size of `unsigned int', as computed by sizeof. */
|
||||
#define SIZEOF_UNSIGNED_INT 4
|
||||
|
||||
/* The size of `unsigned long', as computed by sizeof. */
|
||||
#define SIZEOF_UNSIGNED_LONG 4
|
||||
|
||||
/* The size of `unsigned long long', as computed by sizeof. */
|
||||
#define SIZEOF_UNSIGNED_LONG_LONG 8
|
||||
|
||||
/* The size of `unsigned short', as computed by sizeof. */
|
||||
#define SIZEOF_UNSIGNED_SHORT 2
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#define STDC_HEADERS 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_AES 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_ARCFOUR 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_BLOWFISH 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
/*#define USE_CAMELLIA 1 */
|
||||
|
||||
/* define if capabilities should be used */
|
||||
/* #undef USE_CAPABILITIES */
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_CAST5 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_CRC 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_DES 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_DSA 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_ECC 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_ELGAMAL 1
|
||||
|
||||
/* Defined if the GNU Portable Thread Library should be used */
|
||||
/* #undef USE_GNU_PTH */
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_MD4 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_MD5 1
|
||||
|
||||
/* set this to limit filenames to the 8.3 format */
|
||||
/* #undef USE_ONLY_8DOT3 */
|
||||
|
||||
/* Define to support the experimental random daemon */
|
||||
/* #undef USE_RANDOM_DAEMON */
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_RFC2268 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_RMD160 1
|
||||
|
||||
/* Defined if the EGD based RNG should be used. */
|
||||
/* #undef USE_RNDEGD */
|
||||
|
||||
/* Defined if the /dev/random RNG should be used. */
|
||||
#define USE_RNDLINUX 1
|
||||
|
||||
/* Defined if the default Unix RNG should be used. */
|
||||
/* #undef USE_RNDUNIX */
|
||||
|
||||
/* Defined if the Windows specific RNG should be used. */
|
||||
/* #undef USE_RNDW32 */
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_RSA 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_SEED 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_SERPENT 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_SHA1 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_SHA256 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_SHA512 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_TIGER 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_TWOFISH 1
|
||||
|
||||
/* Defined if this module should be included */
|
||||
#define USE_WHIRLPOOL 1
|
||||
|
||||
/* Version of this package */
|
||||
#define VERSION "1.4.4"
|
||||
|
||||
/* Defined if compiled symbols have a leading underscore */
|
||||
/* #undef WITH_SYMBOL_UNDERSCORE */
|
||||
|
||||
/* Define to 1 if your processor stores words with the most significant byte
|
||||
first (like Motorola and SPARC, unlike Intel and VAX). */
|
||||
/* #undef WORDS_BIGENDIAN */
|
||||
|
||||
/* To allow the use of Libgcrypt in multithreaded programs we have to use
|
||||
special features from the library. */
|
||||
#ifndef _REENTRANT
|
||||
# define _REENTRANT 1
|
||||
#endif
|
||||
|
||||
|
||||
/* Define to empty if `const' does not conform to ANSI C. */
|
||||
/* #undef const */
|
||||
|
||||
/* Define to `__inline__' or `__inline' if that's what the C compiler
|
||||
calls it, or to nothing if 'inline' is not supported under any name. */
|
||||
#ifndef __cplusplus
|
||||
/* #undef inline */
|
||||
#endif
|
||||
|
||||
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
||||
/* #undef size_t */
|
||||
|
||||
/* type to use in place of socklen_t if not defined */
|
||||
/* #undef socklen_t */
|
||||
|
||||
/* Define to the type of an unsigned integer type wide enough to hold a
|
||||
pointer, if such a type exists, and if the system does not define it. */
|
||||
/* #undef uintptr_t */
|
||||
|
||||
|
||||
#define _GCRYPT_IN_LIBGCRYPT 1
|
||||
|
||||
/* If the configure check for endianness has been disabled, get it from
|
||||
OS macros. This is intended for making fat binary builds on OS X. */
|
||||
#ifdef DISABLED_ENDIAN_CHECK
|
||||
# if defined(__BIG_ENDIAN__)
|
||||
# define WORDS_BIGENDIAN 1
|
||||
# elif defined(__LITTLE_ENDIAN__)
|
||||
/* # undef WORDS_BIGENDIAN */
|
||||
# else
|
||||
# error "No endianness found"
|
||||
# endif
|
||||
#endif /*DISABLED_ENDIAN_CHECK*/
|
||||
|
||||
/* We basically use the original Camellia source. Make sure the symbols
|
||||
properly prefixed. */
|
||||
#define CAMELLIA_EXT_SYM_PREFIX _gcry_
|
||||
|
||||
/* This error code is only available with gpg-error 1.7. Thus
|
||||
we define it here with the usual gcry prefix. */
|
||||
#define GCRY_GPG_ERR_NOT_OPERATIONAL 176
|
||||
|
||||
|
||||
#endif /*_GCRYPT_CONFIG_H_INCLUDED*/
|
||||
|
||||
1928
jni/libgcrypt/config.log
Normal file
1928
jni/libgcrypt/config.log
Normal file
File diff suppressed because it is too large
Load Diff
1289
jni/libgcrypt/config.status
Executable file
1289
jni/libgcrypt/config.status
Executable file
File diff suppressed because it is too large
Load Diff
697
jni/libgcrypt/doc/Makefile
Normal file
697
jni/libgcrypt/doc/Makefile
Normal file
@@ -0,0 +1,697 @@
|
||||
# Makefile.in generated by automake 1.10.1 from Makefile.am.
|
||||
# doc/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
# Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is part of Libgcrypt.
|
||||
#
|
||||
# Libgcrypt is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of
|
||||
# the License, or (at your option) any later version.
|
||||
#
|
||||
# Libgcrypt is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||
|
||||
pkgdatadir = $(datadir)/libgcrypt
|
||||
pkglibdir = $(libdir)/libgcrypt
|
||||
pkgincludedir = $(includedir)/libgcrypt
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-unknown-linux-gnu
|
||||
host_triplet = x86_64-unknown-linux-gnu
|
||||
subdir = doc
|
||||
DIST_COMMON = $(gcrypt_TEXINFOS) $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in $(srcdir)/stamp-vti \
|
||||
$(srcdir)/version.texi ChangeLog mdate-sh texinfo.tex
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/noexecstack.m4 $(top_srcdir)/m4/onceonly.m4 \
|
||||
$(top_srcdir)/m4/socklen.m4 $(top_srcdir)/m4/sys_socket_h.m4 \
|
||||
$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
INFO_DEPS = $(srcdir)/gcrypt.info
|
||||
am__TEXINFO_TEX_DIR = $(srcdir)
|
||||
DVIS = gcrypt.dvi
|
||||
PDFS = gcrypt.pdf
|
||||
PSS = gcrypt.ps
|
||||
HTMLS = gcrypt.html
|
||||
TEXINFOS = gcrypt.texi
|
||||
TEXI2DVI = texi2dvi
|
||||
TEXI2PDF = $(TEXI2DVI) --pdf --batch
|
||||
MAKEINFOHTML = $(MAKEINFO) --html
|
||||
AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS)
|
||||
DVIPS = dvips
|
||||
am__installdirs = "$(DESTDIR)$(infodir)"
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run aclocal-1.10
|
||||
AMTAR = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run tar
|
||||
AR = ar
|
||||
AS = as
|
||||
AUTOCONF = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run autoconf
|
||||
AUTOHEADER = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run autoheader
|
||||
AUTOMAKE = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run automake-1.10
|
||||
AWK = gawk
|
||||
BUILD_FILEVERSION =
|
||||
BUILD_REVISION = 1382
|
||||
BUILD_TIMESTAMP =
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
CCASDEPMODE = depmode=gcc3
|
||||
CCASFLAGS = -g -O2
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -g -O2 -fvisibility=hidden -Wall
|
||||
CPP = gcc -E
|
||||
CPPFLAGS =
|
||||
CXX = g++
|
||||
CXXCPP = g++ -E
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -g -O2
|
||||
CYGPATH_W = echo
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = dlltool
|
||||
DL_LIBS =
|
||||
ECHO = echo
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /bin/grep -E
|
||||
EXEEXT =
|
||||
F77 =
|
||||
FALLBACK_SOCKLEN_T = typedef socklen_t gcry_socklen_t;
|
||||
FFLAGS =
|
||||
GCRYPT_CIPHERS = arcfour.lo blowfish.lo cast5.lo des.lo rijndael.lo twofish.lo serpent.lo rfc2268.lo seed.lo camellia.lo camellia-glue.lo
|
||||
GCRYPT_DIGESTS = crc.lo md4.lo md5.lo sha256.lo sha512.lo tiger.lo whirlpool.lo rmd160.lo sha1.lo
|
||||
GCRYPT_PUBKEY_CIPHERS = dsa.lo rsa.lo elgamal.lo ecc.lo
|
||||
GCRYPT_RANDOM = rndlinux.lo
|
||||
GPG_ERROR_CFLAGS =
|
||||
GPG_ERROR_CONFIG = /usr/bin/gpg-error-config
|
||||
GPG_ERROR_LIBS = -lgpg-error
|
||||
GREP = /bin/grep
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
LDFLAGS =
|
||||
LIBGCRYPT_CIPHERS = arcfour blowfish cast5 des aes twofish serpent rfc2268 seed camellia
|
||||
LIBGCRYPT_CONFIG_API_VERSION = 1
|
||||
LIBGCRYPT_CONFIG_CFLAGS =
|
||||
LIBGCRYPT_CONFIG_LIBS = -lgcrypt
|
||||
LIBGCRYPT_DIGESTS = crc md4 md5 rmd160 sha1 sha256 sha512 tiger whirlpool
|
||||
LIBGCRYPT_LT_AGE = 5
|
||||
LIBGCRYPT_LT_CURRENT = 16
|
||||
LIBGCRYPT_LT_REVISION = 2
|
||||
LIBGCRYPT_PUBKEY_CIPHERS = dsa elgamal rsa ecc
|
||||
LIBGCRYPT_THREAD_MODULES =
|
||||
LIBOBJS =
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS =
|
||||
MAINT = #
|
||||
MAKEINFO = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run makeinfo
|
||||
MKDIR_P = /bin/mkdir -p
|
||||
MPI_SFLAGS =
|
||||
NOEXECSTACK_FLAGS = -Wa,--noexecstack
|
||||
OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
PACKAGE = libgcrypt
|
||||
PACKAGE_BUGREPORT = bug-libgcrypt@gnupg.org
|
||||
PACKAGE_NAME = libgcrypt
|
||||
PACKAGE_STRING = libgcrypt 1.4.4
|
||||
PACKAGE_TARNAME = libgcrypt
|
||||
PACKAGE_VERSION = 1.4.4
|
||||
PATH_SEPARATOR = :
|
||||
PTH_CFLAGS =
|
||||
PTH_CONFIG =
|
||||
PTH_LIBS =
|
||||
RANLIB = ranlib
|
||||
RC = no
|
||||
SET_MAKE =
|
||||
SHELL = /bin/sh
|
||||
STRIP = strip
|
||||
SYS_SOCKET_H =
|
||||
VERSION = 1.4.4
|
||||
abs_builddir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/doc
|
||||
abs_srcdir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/doc
|
||||
abs_top_builddir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt
|
||||
abs_top_srcdir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt
|
||||
ac_ct_CC = gcc
|
||||
ac_ct_CXX = g++
|
||||
ac_ct_F77 =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = ${AMTAR} chof - "$$tardir"
|
||||
am__untar = ${AMTAR} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-unknown-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = unknown
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = x86_64-unknown-linux-gnu
|
||||
host_alias =
|
||||
host_cpu = x86_64
|
||||
host_os = linux-gnu
|
||||
host_vendor = unknown
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = $(SHELL) /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = /bin/mkdir -p
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_builddir = ..
|
||||
top_srcdir = ..
|
||||
EXTRA_DIST = README.apichanges HACKING \
|
||||
libgcrypt-modules.eps fips-fsm.eps \
|
||||
libgcrypt-modules.png fips-fsm.png \
|
||||
libgcrypt-modules.pdf fips-fsm.pdf
|
||||
|
||||
DISTCLEANFILES = gcrypt.cps
|
||||
BUILT_SOURCES = libgcrypt-modules.eps fips-fsm.eps \
|
||||
libgcrypt-modules.png fips-fsm.png \
|
||||
libgcrypt-modules.pdf fips-fsm.pdf
|
||||
|
||||
info_TEXINFOS = gcrypt.texi
|
||||
gcrypt_TEXINFOS = lgpl.texi gpl.texi libgcrypt-modules.fig fips-fsm.fig
|
||||
all: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .dvi .eps .fig .html .info .jpg .pdf .png .ps .texi
|
||||
$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu doc/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: # $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): # $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
.texi.info:
|
||||
restore=: && backupdir="$(am__leading_dot)am$$$$" && \
|
||||
am__cwd=`pwd` && cd $(srcdir) && \
|
||||
rm -rf $$backupdir && mkdir $$backupdir && \
|
||||
if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
|
||||
for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \
|
||||
if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \
|
||||
done; \
|
||||
else :; fi && \
|
||||
cd "$$am__cwd"; \
|
||||
if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
|
||||
-o $@ $<; \
|
||||
then \
|
||||
rc=0; \
|
||||
cd $(srcdir); \
|
||||
else \
|
||||
rc=$$?; \
|
||||
cd $(srcdir) && \
|
||||
$$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \
|
||||
fi; \
|
||||
rm -rf $$backupdir; exit $$rc
|
||||
|
||||
.texi.dvi:
|
||||
TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
|
||||
MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \
|
||||
$(TEXI2DVI) $<
|
||||
|
||||
.texi.pdf:
|
||||
TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
|
||||
MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \
|
||||
$(TEXI2PDF) $<
|
||||
|
||||
.texi.html:
|
||||
rm -rf $(@:.html=.htp)
|
||||
if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
|
||||
-o $(@:.html=.htp) $<; \
|
||||
then \
|
||||
rm -rf $@; \
|
||||
if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \
|
||||
mv $(@:.html=) $@; else mv $(@:.html=.htp) $@; fi; \
|
||||
else \
|
||||
if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \
|
||||
rm -rf $(@:.html=); else rm -Rf $(@:.html=.htp) $@; fi; \
|
||||
exit 1; \
|
||||
fi
|
||||
$(srcdir)/gcrypt.info: gcrypt.texi $(srcdir)/version.texi $(gcrypt_TEXINFOS)
|
||||
gcrypt.dvi: gcrypt.texi $(srcdir)/version.texi $(gcrypt_TEXINFOS)
|
||||
gcrypt.pdf: gcrypt.texi $(srcdir)/version.texi $(gcrypt_TEXINFOS)
|
||||
gcrypt.html: gcrypt.texi $(srcdir)/version.texi $(gcrypt_TEXINFOS)
|
||||
$(srcdir)/version.texi: # $(srcdir)/stamp-vti
|
||||
$(srcdir)/stamp-vti: gcrypt.texi $(top_srcdir)/configure
|
||||
@(dir=.; test -f ./gcrypt.texi || dir=$(srcdir); \
|
||||
set `$(SHELL) $(srcdir)/mdate-sh $$dir/gcrypt.texi`; \
|
||||
echo "@set UPDATED $$1 $$2 $$3"; \
|
||||
echo "@set UPDATED-MONTH $$2 $$3"; \
|
||||
echo "@set EDITION $(VERSION)"; \
|
||||
echo "@set VERSION $(VERSION)") > vti.tmp
|
||||
@cmp -s vti.tmp $(srcdir)/version.texi \
|
||||
|| (echo "Updating $(srcdir)/version.texi"; \
|
||||
cp vti.tmp $(srcdir)/version.texi)
|
||||
-@rm -f vti.tmp
|
||||
@cp $(srcdir)/version.texi $@
|
||||
|
||||
mostlyclean-vti:
|
||||
-rm -f vti.tmp
|
||||
|
||||
maintainer-clean-vti:
|
||||
# -rm -f $(srcdir)/stamp-vti $(srcdir)/version.texi
|
||||
.dvi.ps:
|
||||
TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
|
||||
$(DVIPS) -o $@ $<
|
||||
|
||||
uninstall-dvi-am:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(DVIS)'; for p in $$list; do \
|
||||
f=$(am__strip_dir) \
|
||||
echo " rm -f '$(DESTDIR)$(dvidir)/$$f'"; \
|
||||
rm -f "$(DESTDIR)$(dvidir)/$$f"; \
|
||||
done
|
||||
|
||||
uninstall-html-am:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(HTMLS)'; for p in $$list; do \
|
||||
f=$(am__strip_dir) \
|
||||
echo " rm -rf '$(DESTDIR)$(htmldir)/$$f'"; \
|
||||
rm -rf "$(DESTDIR)$(htmldir)/$$f"; \
|
||||
done
|
||||
|
||||
uninstall-info-am:
|
||||
@$(PRE_UNINSTALL)
|
||||
@if test -d '$(DESTDIR)$(infodir)' && \
|
||||
(install-info --version && \
|
||||
install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \
|
||||
list='$(INFO_DEPS)'; \
|
||||
for file in $$list; do \
|
||||
relfile=`echo "$$file" | sed 's|^.*/||'`; \
|
||||
echo " install-info --info-dir='$(DESTDIR)$(infodir)' --remove '$(DESTDIR)$(infodir)/$$relfile'"; \
|
||||
install-info --info-dir="$(DESTDIR)$(infodir)" --remove "$(DESTDIR)$(infodir)/$$relfile"; \
|
||||
done; \
|
||||
else :; fi
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(INFO_DEPS)'; \
|
||||
for file in $$list; do \
|
||||
relfile=`echo "$$file" | sed 's|^.*/||'`; \
|
||||
relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
|
||||
(if test -d "$(DESTDIR)$(infodir)" && cd "$(DESTDIR)$(infodir)"; then \
|
||||
echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]"; \
|
||||
rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
|
||||
else :; fi); \
|
||||
done
|
||||
|
||||
uninstall-pdf-am:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(PDFS)'; for p in $$list; do \
|
||||
f=$(am__strip_dir) \
|
||||
echo " rm -f '$(DESTDIR)$(pdfdir)/$$f'"; \
|
||||
rm -f "$(DESTDIR)$(pdfdir)/$$f"; \
|
||||
done
|
||||
|
||||
uninstall-ps-am:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(PSS)'; for p in $$list; do \
|
||||
f=$(am__strip_dir) \
|
||||
echo " rm -f '$(DESTDIR)$(psdir)/$$f'"; \
|
||||
rm -f "$(DESTDIR)$(psdir)/$$f"; \
|
||||
done
|
||||
|
||||
dist-info: $(INFO_DEPS)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(INFO_DEPS)'; \
|
||||
for base in $$list; do \
|
||||
case $$base in \
|
||||
$(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
esac; \
|
||||
if test -f $$base; then d=.; else d=$(srcdir); fi; \
|
||||
base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
|
||||
for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \
|
||||
if test -f $$file; then \
|
||||
relfile=`expr "$$file" : "$$d/\(.*\)"`; \
|
||||
test -f $(distdir)/$$relfile || \
|
||||
cp -p $$file $(distdir)/$$relfile; \
|
||||
else :; fi; \
|
||||
done; \
|
||||
done
|
||||
|
||||
mostlyclean-aminfo:
|
||||
-rm -rf gcrypt.aux gcrypt.cp gcrypt.cps gcrypt.fn gcrypt.fns gcrypt.ky \
|
||||
gcrypt.kys gcrypt.log gcrypt.pg gcrypt.tmp gcrypt.toc \
|
||||
gcrypt.tp gcrypt.vr gcrypt.vrs gcrypt.dvi gcrypt.pdf \
|
||||
gcrypt.ps gcrypt.html
|
||||
|
||||
maintainer-clean-aminfo:
|
||||
@list='$(INFO_DEPS)'; for i in $$list; do \
|
||||
i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
|
||||
echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \
|
||||
rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
|
||||
done
|
||||
tags: TAGS
|
||||
TAGS:
|
||||
|
||||
ctags: CTAGS
|
||||
CTAGS:
|
||||
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$(top_distdir)" distdir="$(distdir)" \
|
||||
dist-info
|
||||
check-am: all-am
|
||||
check: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) check-am
|
||||
all-am: Makefile $(INFO_DEPS)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(infodir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am: $(DVIS)
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am: $(HTMLS)
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am: $(INFO_DEPS)
|
||||
|
||||
install-data-am: install-info-am
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am: $(DVIS)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(dvidir)" || $(MKDIR_P) "$(DESTDIR)$(dvidir)"
|
||||
@list='$(DVIS)'; for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
f=$(am__strip_dir) \
|
||||
echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(dvidir)/$$f'"; \
|
||||
$(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(dvidir)/$$f"; \
|
||||
done
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am: $(HTMLS)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(htmldir)" || $(MKDIR_P) "$(DESTDIR)$(htmldir)"
|
||||
@list='$(HTMLS)'; for p in $$list; do \
|
||||
if test -f "$$p" || test -d "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
f=$(am__strip_dir) \
|
||||
if test -d "$$d$$p"; then \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
|
||||
echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
|
||||
$(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
|
||||
else \
|
||||
echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
|
||||
$(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
|
||||
fi; \
|
||||
done
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am: $(INFO_DEPS)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(infodir)" || $(MKDIR_P) "$(DESTDIR)$(infodir)"
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(INFO_DEPS)'; \
|
||||
for file in $$list; do \
|
||||
case $$file in \
|
||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
esac; \
|
||||
if test -f $$file; then d=.; else d=$(srcdir); fi; \
|
||||
file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
|
||||
for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
|
||||
$$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
|
||||
if test -f $$ifile; then \
|
||||
relfile=`echo "$$ifile" | sed 's|^.*/||'`; \
|
||||
echo " $(INSTALL_DATA) '$$ifile' '$(DESTDIR)$(infodir)/$$relfile'"; \
|
||||
$(INSTALL_DATA) "$$ifile" "$(DESTDIR)$(infodir)/$$relfile"; \
|
||||
else : ; fi; \
|
||||
done; \
|
||||
done
|
||||
@$(POST_INSTALL)
|
||||
@if (install-info --version && \
|
||||
install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \
|
||||
list='$(INFO_DEPS)'; \
|
||||
for file in $$list; do \
|
||||
relfile=`echo "$$file" | sed 's|^.*/||'`; \
|
||||
echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\
|
||||
install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
|
||||
done; \
|
||||
else : ; fi
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am: $(PDFS)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(pdfdir)" || $(MKDIR_P) "$(DESTDIR)$(pdfdir)"
|
||||
@list='$(PDFS)'; for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
f=$(am__strip_dir) \
|
||||
echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/$$f'"; \
|
||||
$(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/$$f"; \
|
||||
done
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am: $(PSS)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(psdir)" || $(MKDIR_P) "$(DESTDIR)$(psdir)"
|
||||
@list='$(PSS)'; for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
f=$(am__strip_dir) \
|
||||
echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(psdir)/$$f'"; \
|
||||
$(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(psdir)/$$f"; \
|
||||
done
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-aminfo \
|
||||
maintainer-clean-generic maintainer-clean-vti
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-aminfo mostlyclean-generic \
|
||||
mostlyclean-libtool mostlyclean-vti
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am: $(PDFS)
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am: $(PSS)
|
||||
|
||||
uninstall-am: uninstall-dvi-am uninstall-html-am uninstall-info-am \
|
||||
uninstall-pdf-am uninstall-ps-am
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
||||
dist-info distclean distclean-generic distclean-libtool \
|
||||
distdir dvi dvi-am html html-am info info-am install \
|
||||
install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am install-man \
|
||||
install-pdf install-pdf-am install-ps install-ps-am \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
maintainer-clean maintainer-clean-aminfo \
|
||||
maintainer-clean-generic maintainer-clean-vti mostlyclean \
|
||||
mostlyclean-aminfo mostlyclean-generic mostlyclean-libtool \
|
||||
mostlyclean-vti pdf pdf-am ps ps-am uninstall uninstall-am \
|
||||
uninstall-dvi-am uninstall-html-am uninstall-info-am \
|
||||
uninstall-pdf-am uninstall-ps-am
|
||||
|
||||
|
||||
.fig.png:
|
||||
fig2dev -L png `test -f '$<' || echo '$(srcdir)/'`$< $@
|
||||
|
||||
.fig.jpg:
|
||||
fig2dev -L jpg `test -f '$<' || echo '$(srcdir)/'`$< $@
|
||||
|
||||
.fig.eps:
|
||||
fig2dev -L eps `test -f '$<' || echo '$(srcdir)/'`$< $@
|
||||
|
||||
.fig.pdf:
|
||||
fig2dev -L pdf `test -f '$<' || echo '$(srcdir)/'`$< $@
|
||||
|
||||
# Make sure that gcrypt.texi is touched if any other source file has
|
||||
# been modified. This is required so that the version.texi magic
|
||||
# updates the release date.
|
||||
gnupg.texi : $(gcrypt_TEXINFOS)
|
||||
touch $(srcdir)/gcrypt.texi
|
||||
|
||||
online: gcrypt.html gcrypt.pdf gcrypt.info
|
||||
set -e; \
|
||||
echo "Uploading current manuals to www.gnupg.org ..."; \
|
||||
cp libgcrypt-modules.png gcrypt.html/; \
|
||||
cp fips-fsm.png gcrypt.html/; \
|
||||
user=werner ; dashdevel="" ; \
|
||||
if echo "1.4.4" | grep -- "-svn" >/dev/null; then \
|
||||
dashdevel="-devel" ; \
|
||||
cp gcrypt.pdf gcrypt.html/; \
|
||||
cp gcrypt.info gcrypt.html/; \
|
||||
else \
|
||||
rsync -v gcrypt.pdf gcrypt.info \
|
||||
$${user}@trithemius.gnupg.org:webspace/manuals/ ; \
|
||||
fi ; \
|
||||
cd gcrypt.html ; \
|
||||
rsync -vr --exclude='.svn' . \
|
||||
$${user}@trithemius.gnupg.org:webspace/manuals/gcrypt$${dashdevel}/
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
7806
jni/libgcrypt/libtool
Executable file
7806
jni/libgcrypt/libtool
Executable file
File diff suppressed because it is too large
Load Diff
359
jni/libgcrypt/m4/Makefile
Normal file
359
jni/libgcrypt/m4/Makefile
Normal file
@@ -0,0 +1,359 @@
|
||||
# Makefile.in generated by automake 1.10.1 from Makefile.am.
|
||||
# m4/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
pkgdatadir = $(datadir)/libgcrypt
|
||||
pkglibdir = $(libdir)/libgcrypt
|
||||
pkgincludedir = $(includedir)/libgcrypt
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-unknown-linux-gnu
|
||||
host_triplet = x86_64-unknown-linux-gnu
|
||||
subdir = m4
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ChangeLog
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/noexecstack.m4 $(top_srcdir)/m4/onceonly.m4 \
|
||||
$(top_srcdir)/m4/socklen.m4 $(top_srcdir)/m4/sys_socket_h.m4 \
|
||||
$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run aclocal-1.10
|
||||
AMTAR = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run tar
|
||||
AR = ar
|
||||
AS = as
|
||||
AUTOCONF = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run autoconf
|
||||
AUTOHEADER = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run autoheader
|
||||
AUTOMAKE = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run automake-1.10
|
||||
AWK = gawk
|
||||
BUILD_FILEVERSION =
|
||||
BUILD_REVISION = 1382
|
||||
BUILD_TIMESTAMP =
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
CCASDEPMODE = depmode=gcc3
|
||||
CCASFLAGS = -g -O2
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -g -O2 -fvisibility=hidden -Wall
|
||||
CPP = gcc -E
|
||||
CPPFLAGS =
|
||||
CXX = g++
|
||||
CXXCPP = g++ -E
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -g -O2
|
||||
CYGPATH_W = echo
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = dlltool
|
||||
DL_LIBS =
|
||||
ECHO = echo
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /bin/grep -E
|
||||
EXEEXT =
|
||||
F77 =
|
||||
FALLBACK_SOCKLEN_T = typedef socklen_t gcry_socklen_t;
|
||||
FFLAGS =
|
||||
GCRYPT_CIPHERS = arcfour.lo blowfish.lo cast5.lo des.lo rijndael.lo twofish.lo serpent.lo rfc2268.lo seed.lo camellia.lo camellia-glue.lo
|
||||
GCRYPT_DIGESTS = crc.lo md4.lo md5.lo sha256.lo sha512.lo tiger.lo whirlpool.lo rmd160.lo sha1.lo
|
||||
GCRYPT_PUBKEY_CIPHERS = dsa.lo rsa.lo elgamal.lo ecc.lo
|
||||
GCRYPT_RANDOM = rndlinux.lo
|
||||
GPG_ERROR_CFLAGS =
|
||||
GPG_ERROR_CONFIG = /usr/bin/gpg-error-config
|
||||
GPG_ERROR_LIBS = -lgpg-error
|
||||
GREP = /bin/grep
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
LDFLAGS =
|
||||
LIBGCRYPT_CIPHERS = arcfour blowfish cast5 des aes twofish serpent rfc2268 seed camellia
|
||||
LIBGCRYPT_CONFIG_API_VERSION = 1
|
||||
LIBGCRYPT_CONFIG_CFLAGS =
|
||||
LIBGCRYPT_CONFIG_LIBS = -lgcrypt
|
||||
LIBGCRYPT_DIGESTS = crc md4 md5 rmd160 sha1 sha256 sha512 tiger whirlpool
|
||||
LIBGCRYPT_LT_AGE = 5
|
||||
LIBGCRYPT_LT_CURRENT = 16
|
||||
LIBGCRYPT_LT_REVISION = 2
|
||||
LIBGCRYPT_PUBKEY_CIPHERS = dsa elgamal rsa ecc
|
||||
LIBGCRYPT_THREAD_MODULES =
|
||||
LIBOBJS =
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS =
|
||||
MAINT = #
|
||||
MAKEINFO = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run makeinfo
|
||||
MKDIR_P = /bin/mkdir -p
|
||||
MPI_SFLAGS =
|
||||
NOEXECSTACK_FLAGS = -Wa,--noexecstack
|
||||
OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
PACKAGE = libgcrypt
|
||||
PACKAGE_BUGREPORT = bug-libgcrypt@gnupg.org
|
||||
PACKAGE_NAME = libgcrypt
|
||||
PACKAGE_STRING = libgcrypt 1.4.4
|
||||
PACKAGE_TARNAME = libgcrypt
|
||||
PACKAGE_VERSION = 1.4.4
|
||||
PATH_SEPARATOR = :
|
||||
PTH_CFLAGS =
|
||||
PTH_CONFIG =
|
||||
PTH_LIBS =
|
||||
RANLIB = ranlib
|
||||
RC = no
|
||||
SET_MAKE =
|
||||
SHELL = /bin/sh
|
||||
STRIP = strip
|
||||
SYS_SOCKET_H =
|
||||
VERSION = 1.4.4
|
||||
abs_builddir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/m4
|
||||
abs_srcdir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/m4
|
||||
abs_top_builddir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt
|
||||
abs_top_srcdir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt
|
||||
ac_ct_CC = gcc
|
||||
ac_ct_CXX = g++
|
||||
ac_ct_F77 =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = ${AMTAR} chof - "$$tardir"
|
||||
am__untar = ${AMTAR} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-unknown-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = unknown
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = x86_64-unknown-linux-gnu
|
||||
host_alias =
|
||||
host_cpu = x86_64
|
||||
host_os = linux-gnu
|
||||
host_vendor = unknown
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = $(SHELL) /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = /bin/mkdir -p
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_builddir = ..
|
||||
top_srcdir = ..
|
||||
EXTRA_DIST = libtool.m4 onceonly.m4 socklen.m4 sys_socket_h.m4 noexecstack.m4
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu m4/Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu m4/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: # $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): # $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
tags: TAGS
|
||||
TAGS:
|
||||
|
||||
ctags: CTAGS
|
||||
CTAGS:
|
||||
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile
|
||||
installdirs:
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
||||
distclean distclean-generic distclean-libtool distdir dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-dvi install-dvi-am \
|
||||
install-exec install-exec-am install-html install-html-am \
|
||||
install-info install-info-am install-man install-pdf \
|
||||
install-pdf-am install-ps install-ps-am install-strip \
|
||||
installcheck installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-generic \
|
||||
mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
1
jni/libgcrypt/mpi/.deps/ec.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/ec.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpi-add.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpi-add.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpi-bit.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpi-bit.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpi-cmp.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpi-cmp.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpi-div.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpi-div.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpi-gcd.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpi-gcd.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpi-inline.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpi-inline.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpi-inv.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpi-inv.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpi-mod.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpi-mod.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpi-mpow.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpi-mpow.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpi-mul.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpi-mul.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpi-pow.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpi-pow.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpi-scan.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpi-scan.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpicoder.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpicoder.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-add1-asm.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-add1-asm.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-add1.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-add1.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-div.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-div.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-lshift-asm.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-lshift-asm.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-lshift.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-lshift.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-mul.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-mul.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-mul1-asm.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-mul1-asm.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-mul1.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-mul1.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-mul2-asm.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-mul2-asm.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-mul2.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-mul2.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-mul3-asm.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-mul3-asm.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-mul3.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-mul3.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-rshift-asm.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-rshift-asm.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-rshift.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-rshift.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-sub1-asm.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-sub1-asm.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpih-sub1.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpih-sub1.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/mpiutil.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/mpiutil.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/udiv-asm.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/udiv-asm.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/udiv-qrnnd-asm.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/udiv-qrnnd-asm.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/udiv-qrnnd.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/udiv-qrnnd.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
1
jni/libgcrypt/mpi/.deps/udiv.Plo
Normal file
1
jni/libgcrypt/mpi/.deps/udiv.Plo
Normal file
@@ -0,0 +1 @@
|
||||
# dummy
|
||||
BIN
jni/libgcrypt/mpi/.longlong.h.swp
Normal file
BIN
jni/libgcrypt/mpi/.longlong.h.swp
Normal file
Binary file not shown.
27
jni/libgcrypt/mpi/Android.mk.bak
Normal file
27
jni/libgcrypt/mpi/Android.mk.bak
Normal file
@@ -0,0 +1,27 @@
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := libgcrypt-mpi
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
mpi-add.c \
|
||||
mpi-bit.c \
|
||||
mpi-cmp.c \
|
||||
mpi-div.c \
|
||||
mpi-gcd.c \
|
||||
mpi-inline.c \
|
||||
mpi-inv.c \
|
||||
mpi-mul.c \
|
||||
mpi-mod.c \
|
||||
mpi-pow.c \
|
||||
mpi-mpow.c \
|
||||
mpi-scan.c \
|
||||
mpicoder.c \
|
||||
mpiutil.c \
|
||||
ec.c
|
||||
|
||||
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../ $(LOCAL_PATH)/../src $(LOCAL_PATH)/../../libgpg-error/src/
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
670
jni/libgcrypt/mpi/Makefile
Normal file
670
jni/libgcrypt/mpi/Makefile
Normal file
@@ -0,0 +1,670 @@
|
||||
# Makefile.in generated by automake 1.10.1 from Makefile.am.
|
||||
# mpi/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
# Copyright (C) 1992, 1999, 2000, 2002 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is part of Libgcrypt.
|
||||
#
|
||||
# Libgcrypt is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of
|
||||
# the License, or (at your option) any later version.
|
||||
#
|
||||
# Libgcrypt is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||
|
||||
# 1.5 leads to a combinatorial explosion due to all the conditionals
|
||||
# I was not able to build it with 64Megs - 1.6 fixes this.
|
||||
# not anymore required: AUTOMAKE_OPTIONS = 1.6
|
||||
|
||||
|
||||
pkgdatadir = $(datadir)/libgcrypt
|
||||
pkglibdir = $(libdir)/libgcrypt
|
||||
pkgincludedir = $(includedir)/libgcrypt
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-unknown-linux-gnu
|
||||
host_triplet = x86_64-unknown-linux-gnu
|
||||
subdir = mpi
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ChangeLog
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/noexecstack.m4 $(top_srcdir)/m4/onceonly.m4 \
|
||||
$(top_srcdir)/m4/socklen.m4 $(top_srcdir)/m4/sys_socket_h.m4 \
|
||||
$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
LTLIBRARIES = $(noinst_LTLIBRARIES)
|
||||
libmpi_la_LIBADD =
|
||||
am_libmpi_la_OBJECTS = mpi-add.lo mpi-bit.lo mpi-cmp.lo mpi-div.lo \
|
||||
mpi-gcd.lo mpi-inline.lo mpi-inv.lo mpi-mul.lo mpi-mod.lo \
|
||||
mpi-pow.lo mpi-mpow.lo mpi-scan.lo mpicoder.lo mpih-div.lo \
|
||||
mpih-mul.lo mpiutil.lo ec.lo
|
||||
am__objects_1 = mpih-add1.lo
|
||||
#am__objects_1 = mpih-add1-asm.lo
|
||||
am__objects_2 = mpih-sub1.lo
|
||||
#am__objects_2 = mpih-sub1-asm.lo
|
||||
am__objects_3 = mpih-mul1.lo
|
||||
#am__objects_3 = mpih-mul1-asm.lo
|
||||
am__objects_4 = mpih-mul2.lo
|
||||
#am__objects_4 = mpih-mul2-asm.lo
|
||||
am__objects_5 = mpih-mul3.lo
|
||||
#am__objects_5 = mpih-mul3-asm.lo
|
||||
am__objects_6 = mpih-lshift.lo
|
||||
#am__objects_6 = mpih-lshift-asm.lo
|
||||
am__objects_7 = mpih-rshift.lo
|
||||
#am__objects_7 = mpih-rshift-asm.lo
|
||||
#am__objects_8 = udiv.lo
|
||||
#am__objects_8 = udiv-asm.lo
|
||||
#am__objects_9 = udiv-qrnnd.lo
|
||||
#am__objects_9 = udiv-qrnnd-asm.lo
|
||||
nodist_libmpi_la_OBJECTS = $(am__objects_1) $(am__objects_2) \
|
||||
$(am__objects_3) $(am__objects_4) $(am__objects_5) \
|
||||
$(am__objects_6) $(am__objects_7) $(am__objects_8) \
|
||||
$(am__objects_9)
|
||||
libmpi_la_OBJECTS = $(am_libmpi_la_OBJECTS) \
|
||||
$(nodist_libmpi_la_OBJECTS)
|
||||
libmpi_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
$(libmpi_la_LDFLAGS) $(LDFLAGS) -o $@
|
||||
DEFAULT_INCLUDES = -I. -I$(top_builddir)
|
||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
CPPASCOMPILE = $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS)
|
||||
LTCPPASCOMPILE = $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS)
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
SOURCES = $(libmpi_la_SOURCES) $(nodist_libmpi_la_SOURCES)
|
||||
DIST_SOURCES = $(libmpi_la_SOURCES)
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run aclocal-1.10
|
||||
AMTAR = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run tar
|
||||
AR = ar
|
||||
AS = as
|
||||
AUTOCONF = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run autoconf
|
||||
AUTOHEADER = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run autoheader
|
||||
AUTOMAKE = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run automake-1.10
|
||||
AWK = gawk
|
||||
BUILD_FILEVERSION =
|
||||
BUILD_REVISION = 1382
|
||||
BUILD_TIMESTAMP =
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
CCASDEPMODE = depmode=gcc3
|
||||
CCASFLAGS = -g -O2
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -g -O2 -fvisibility=hidden -Wall
|
||||
CPP = gcc -E
|
||||
CPPFLAGS =
|
||||
CXX = g++
|
||||
CXXCPP = g++ -E
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -g -O2
|
||||
CYGPATH_W = echo
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = dlltool
|
||||
DL_LIBS =
|
||||
ECHO = echo
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /bin/grep -E
|
||||
EXEEXT =
|
||||
F77 =
|
||||
FALLBACK_SOCKLEN_T = typedef socklen_t gcry_socklen_t;
|
||||
FFLAGS =
|
||||
GCRYPT_CIPHERS = arcfour.lo blowfish.lo cast5.lo des.lo rijndael.lo twofish.lo serpent.lo rfc2268.lo seed.lo camellia.lo camellia-glue.lo
|
||||
GCRYPT_DIGESTS = crc.lo md4.lo md5.lo sha256.lo sha512.lo tiger.lo whirlpool.lo rmd160.lo sha1.lo
|
||||
GCRYPT_PUBKEY_CIPHERS = dsa.lo rsa.lo elgamal.lo ecc.lo
|
||||
GCRYPT_RANDOM = rndlinux.lo
|
||||
GPG_ERROR_CFLAGS =
|
||||
GPG_ERROR_CONFIG = /usr/bin/gpg-error-config
|
||||
GPG_ERROR_LIBS = -lgpg-error
|
||||
GREP = /bin/grep
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
LDFLAGS =
|
||||
LIBGCRYPT_CIPHERS = arcfour blowfish cast5 des aes twofish serpent rfc2268 seed camellia
|
||||
LIBGCRYPT_CONFIG_API_VERSION = 1
|
||||
LIBGCRYPT_CONFIG_CFLAGS =
|
||||
LIBGCRYPT_CONFIG_LIBS = -lgcrypt
|
||||
LIBGCRYPT_DIGESTS = crc md4 md5 rmd160 sha1 sha256 sha512 tiger whirlpool
|
||||
LIBGCRYPT_LT_AGE = 5
|
||||
LIBGCRYPT_LT_CURRENT = 16
|
||||
LIBGCRYPT_LT_REVISION = 2
|
||||
LIBGCRYPT_PUBKEY_CIPHERS = dsa elgamal rsa ecc
|
||||
LIBGCRYPT_THREAD_MODULES =
|
||||
LIBOBJS =
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS =
|
||||
MAINT = #
|
||||
MAKEINFO = ${SHELL} /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/missing --run makeinfo
|
||||
MKDIR_P = /bin/mkdir -p
|
||||
MPI_SFLAGS =
|
||||
NOEXECSTACK_FLAGS = -Wa,--noexecstack
|
||||
OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
PACKAGE = libgcrypt
|
||||
PACKAGE_BUGREPORT = bug-libgcrypt@gnupg.org
|
||||
PACKAGE_NAME = libgcrypt
|
||||
PACKAGE_STRING = libgcrypt 1.4.4
|
||||
PACKAGE_TARNAME = libgcrypt
|
||||
PACKAGE_VERSION = 1.4.4
|
||||
PATH_SEPARATOR = :
|
||||
PTH_CFLAGS =
|
||||
PTH_CONFIG =
|
||||
PTH_LIBS =
|
||||
RANLIB = ranlib
|
||||
RC = no
|
||||
SET_MAKE =
|
||||
SHELL = /bin/sh
|
||||
STRIP = strip
|
||||
SYS_SOCKET_H =
|
||||
VERSION = 1.4.4
|
||||
abs_builddir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/mpi
|
||||
abs_srcdir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/mpi
|
||||
abs_top_builddir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt
|
||||
abs_top_srcdir = /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt
|
||||
ac_ct_CC = gcc
|
||||
ac_ct_CXX = g++
|
||||
ac_ct_F77 =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = ${AMTAR} chof - "$$tardir"
|
||||
am__untar = ${AMTAR} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-unknown-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = unknown
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = x86_64-unknown-linux-gnu
|
||||
host_alias =
|
||||
host_cpu = x86_64
|
||||
host_os = linux-gnu
|
||||
host_vendor = unknown
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = $(SHELL) /home/bpellin/usr/lib/android-ndk-1.6_r1/apps/KeePassDroid/project/jni/libgcrypt/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = /bin/mkdir -p
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_builddir = ..
|
||||
top_srcdir = ..
|
||||
|
||||
# Need to include ../src in addition to top_srcdir because gcrypt.h is
|
||||
# a built header.
|
||||
AM_CPPFLAGS = -I../src -I$(top_srcdir)/src
|
||||
AM_CFLAGS = $(GPG_ERROR_CFLAGS)
|
||||
AM_ASFLAGS = $(MPI_SFLAGS)
|
||||
AM_CCASFLAGS = $(NOEXECSTACK_FLAGS)
|
||||
EXTRA_DIST = Manifest config.links
|
||||
DISTCLEANFILES = mpi-asm-defs.h \
|
||||
mpih-add1-asm.S mpih-mul1-asm.S mpih-mul2-asm.S mpih-mul3-asm.S \
|
||||
mpih-lshift-asm.S mpih-rshift-asm.S mpih-sub1-asm.S asm-syntax.h \
|
||||
mpih-add1.c mpih-mul1.c mpih-mul2.c mpih-mul3.c \
|
||||
mpih-lshift.c mpih-rshift.c mpih-sub1.c \
|
||||
sysdep.h mod-source-info.h
|
||||
|
||||
#mpih_add1 =
|
||||
mpih_add1 = mpih-add1.c
|
||||
|
||||
# Beware: The following list is not a comment but grepped by
|
||||
# config.links to get the list of symlinked modules
|
||||
# Optional modules are marked with an O in the second column.
|
||||
#BEGIN_ASM_LIST
|
||||
# mpih-add1 C
|
||||
# mpih-sub1 C
|
||||
# mpih-mul1 C
|
||||
# mpih-mul2 C
|
||||
# mpih-mul3 C
|
||||
# mpih-lshift C
|
||||
# mpih-rshift C
|
||||
# udiv O
|
||||
# udiv-qrnnd O
|
||||
#END_ASM_LIST
|
||||
|
||||
# Note: This function has not yet been implemented. There is only a dummy in
|
||||
# generic/
|
||||
# udiv-w-sdiv O
|
||||
|
||||
# And we need to have conditionals for all modules because
|
||||
# we don't know whether they are .c or .S. Very ugly; I know.
|
||||
# Remember to define them all in configure.ac
|
||||
#mpih_add1 = mpih-add1-asm.S
|
||||
#mpih_sub1 =
|
||||
mpih_sub1 = mpih-sub1.c
|
||||
#mpih_sub1 = mpih-sub1-asm.S
|
||||
#mpih_mul1 =
|
||||
mpih_mul1 = mpih-mul1.c
|
||||
#mpih_mul1 = mpih-mul1-asm.S
|
||||
#mpih_mul2 =
|
||||
mpih_mul2 = mpih-mul2.c
|
||||
#mpih_mul2 = mpih-mul2-asm.S
|
||||
#mpih_mul3 =
|
||||
mpih_mul3 = mpih-mul3.c
|
||||
#mpih_mul3 = mpih-mul3-asm.S
|
||||
#mpih_lshift =
|
||||
mpih_lshift = mpih-lshift.c
|
||||
#mpih_lshift = mpih-lshift-asm.S
|
||||
#mpih_rshift =
|
||||
mpih_rshift = mpih-rshift.c
|
||||
#mpih_rshift = mpih-rshift-asm.S
|
||||
udiv =
|
||||
#udiv = udiv.c
|
||||
#udiv = udiv-asm.S
|
||||
udiv_qrnnd =
|
||||
#udiv_qrnnd = udiv-qrnnd.c
|
||||
#udiv_qrnnd = udiv-qrnnd-asm.S
|
||||
noinst_LTLIBRARIES = libmpi.la
|
||||
libmpi_la_LDFLAGS =
|
||||
nodist_libmpi_la_SOURCES = $(mpih_add1) $(mpih_sub1) $(mpih_mul1) \
|
||||
$(mpih_mul2) $(mpih_mul3) $(mpih_lshift) $(mpih_rshift) \
|
||||
$(udiv) $(udiv_qrnnd)
|
||||
|
||||
libmpi_la_SOURCES = longlong.h \
|
||||
mpi-add.c \
|
||||
mpi-bit.c \
|
||||
mpi-cmp.c \
|
||||
mpi-div.c \
|
||||
mpi-gcd.c \
|
||||
mpi-internal.h \
|
||||
mpi-inline.h \
|
||||
mpi-inline.c \
|
||||
mpi-inv.c \
|
||||
mpi-mul.c \
|
||||
mpi-mod.c \
|
||||
mpi-pow.c \
|
||||
mpi-mpow.c \
|
||||
mpi-scan.c \
|
||||
mpicoder.c \
|
||||
mpih-div.c \
|
||||
mpih-mul.c \
|
||||
mpiutil.c \
|
||||
ec.c
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .S .c .lo .o .obj
|
||||
$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu mpi/Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu mpi/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: # $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): # $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
clean-noinstLTLIBRARIES:
|
||||
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
|
||||
@list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
|
||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||
test "$$dir" != "$$p" || dir=.; \
|
||||
echo "rm -f \"$${dir}/so_locations\""; \
|
||||
rm -f "$${dir}/so_locations"; \
|
||||
done
|
||||
libmpi.la: $(libmpi_la_OBJECTS) $(libmpi_la_DEPENDENCIES)
|
||||
$(libmpi_la_LINK) $(libmpi_la_OBJECTS) $(libmpi_la_LIBADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/ec.Plo
|
||||
include ./$(DEPDIR)/mpi-add.Plo
|
||||
include ./$(DEPDIR)/mpi-bit.Plo
|
||||
include ./$(DEPDIR)/mpi-cmp.Plo
|
||||
include ./$(DEPDIR)/mpi-div.Plo
|
||||
include ./$(DEPDIR)/mpi-gcd.Plo
|
||||
include ./$(DEPDIR)/mpi-inline.Plo
|
||||
include ./$(DEPDIR)/mpi-inv.Plo
|
||||
include ./$(DEPDIR)/mpi-mod.Plo
|
||||
include ./$(DEPDIR)/mpi-mpow.Plo
|
||||
include ./$(DEPDIR)/mpi-mul.Plo
|
||||
include ./$(DEPDIR)/mpi-pow.Plo
|
||||
include ./$(DEPDIR)/mpi-scan.Plo
|
||||
include ./$(DEPDIR)/mpicoder.Plo
|
||||
include ./$(DEPDIR)/mpih-add1-asm.Plo
|
||||
include ./$(DEPDIR)/mpih-add1.Plo
|
||||
include ./$(DEPDIR)/mpih-div.Plo
|
||||
include ./$(DEPDIR)/mpih-lshift-asm.Plo
|
||||
include ./$(DEPDIR)/mpih-lshift.Plo
|
||||
include ./$(DEPDIR)/mpih-mul.Plo
|
||||
include ./$(DEPDIR)/mpih-mul1-asm.Plo
|
||||
include ./$(DEPDIR)/mpih-mul1.Plo
|
||||
include ./$(DEPDIR)/mpih-mul2-asm.Plo
|
||||
include ./$(DEPDIR)/mpih-mul2.Plo
|
||||
include ./$(DEPDIR)/mpih-mul3-asm.Plo
|
||||
include ./$(DEPDIR)/mpih-mul3.Plo
|
||||
include ./$(DEPDIR)/mpih-rshift-asm.Plo
|
||||
include ./$(DEPDIR)/mpih-rshift.Plo
|
||||
include ./$(DEPDIR)/mpih-sub1-asm.Plo
|
||||
include ./$(DEPDIR)/mpih-sub1.Plo
|
||||
include ./$(DEPDIR)/mpiutil.Plo
|
||||
include ./$(DEPDIR)/udiv-asm.Plo
|
||||
include ./$(DEPDIR)/udiv-qrnnd-asm.Plo
|
||||
include ./$(DEPDIR)/udiv-qrnnd.Plo
|
||||
include ./$(DEPDIR)/udiv.Plo
|
||||
|
||||
.S.o:
|
||||
$(CPPASCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) \
|
||||
# $(CPPASCOMPILE) -c -o $@ $<
|
||||
|
||||
.S.obj:
|
||||
$(CPPASCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) \
|
||||
# $(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
.S.lo:
|
||||
$(LTCPPASCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
# source='$<' object='$@' libtool=yes \
|
||||
# DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) \
|
||||
# $(LTCPPASCOMPILE) -c -o $@ $<
|
||||
|
||||
.c.o:
|
||||
$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(COMPILE) -c $<
|
||||
|
||||
.c.obj:
|
||||
$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
# source='$<' object='$@' libtool=yes \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$tags $$unique; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$tags $$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& cd $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) $$here
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(LTLIBRARIES)
|
||||
installdirs:
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
|
||||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-noinstLTLIBRARIES ctags distclean \
|
||||
distclean-compile distclean-generic distclean-libtool \
|
||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am install-man \
|
||||
install-pdf install-pdf-am install-ps install-ps-am \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
maintainer-clean maintainer-clean-generic mostlyclean \
|
||||
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
|
||||
pdf pdf-am ps ps-am tags uninstall uninstall-am
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
3
jni/libgcrypt/mpi/asm-syntax.h
Normal file
3
jni/libgcrypt/mpi/asm-syntax.h
Normal file
@@ -0,0 +1,3 @@
|
||||
/* created by config.links - do not edit */
|
||||
/* Host: x86_64-unknown-linux-gnu */
|
||||
/* Assembler modules disabled on request */
|
||||
@@ -203,7 +203,7 @@ extern UDItype __udiv_qrnnd ();
|
||||
"rI" ((USItype)(bh)), \
|
||||
"r" ((USItype)(al)), \
|
||||
"rI" ((USItype)(bl)))
|
||||
#if defined __ARM_ARCH_2__ || defined __ARM_ARCH_3__
|
||||
#if defined __ARM_ARCH_2__ || defined __ARM_ARCH_3__
|
||||
#define umul_ppmm(xh, xl, a, b) \
|
||||
__asm__ ("%@ Inlined umul_ppmm\n" \
|
||||
"mov %|r0, %2, lsr #16 @ AAAA\n" \
|
||||
@@ -223,6 +223,9 @@ extern UDItype __udiv_qrnnd ();
|
||||
: "r" ((USItype)(a)), \
|
||||
"r" ((USItype)(b)) \
|
||||
: "r0", "r1", "r2")
|
||||
#elif defined __ARM_ARCH_5TE__
|
||||
#define umul_ppmm(xh, xl, a, b)
|
||||
|
||||
#else
|
||||
#define umul_ppmm(xh, xl, a, b) \
|
||||
__asm__ ("%@ Inlined umul_ppmm\n" \
|
||||
|
||||
11
jni/libgcrypt/mpi/mod-source-info.h
Normal file
11
jni/libgcrypt/mpi/mod-source-info.h
Normal file
@@ -0,0 +1,11 @@
|
||||
/* Created by config.links - do not edit */
|
||||
/* Host: x86_64-unknown-linux-gnu */
|
||||
static char mod_source_info[] =
|
||||
":generic/mpih-add1.c"
|
||||
":generic/mpih-sub1.c"
|
||||
":generic/mpih-mul1.c"
|
||||
":generic/mpih-mul2.c"
|
||||
":generic/mpih-mul3.c"
|
||||
":generic/mpih-lshift.c"
|
||||
":generic/mpih-rshift.c"
|
||||
;
|
||||
1
jni/libgcrypt/mpi/mpi-asm-defs.h
Symbolic link
1
jni/libgcrypt/mpi/mpi-asm-defs.h
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/generic/mpi-asm-defs.h
|
||||
1
jni/libgcrypt/mpi/mpih-add1-asm.S
Symbolic link
1
jni/libgcrypt/mpi/mpih-add1-asm.S
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/amd64/mpih-add1.S
|
||||
1
jni/libgcrypt/mpi/mpih-add1.c
Symbolic link
1
jni/libgcrypt/mpi/mpih-add1.c
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/generic/mpih-add1.c
|
||||
1
jni/libgcrypt/mpi/mpih-lshift-asm.S
Symbolic link
1
jni/libgcrypt/mpi/mpih-lshift-asm.S
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/amd64/mpih-lshift.S
|
||||
1
jni/libgcrypt/mpi/mpih-lshift.c
Symbolic link
1
jni/libgcrypt/mpi/mpih-lshift.c
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/generic/mpih-lshift.c
|
||||
1
jni/libgcrypt/mpi/mpih-mul1-asm.S
Symbolic link
1
jni/libgcrypt/mpi/mpih-mul1-asm.S
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/amd64/mpih-mul1.S
|
||||
1
jni/libgcrypt/mpi/mpih-mul1.c
Symbolic link
1
jni/libgcrypt/mpi/mpih-mul1.c
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/generic/mpih-mul1.c
|
||||
1
jni/libgcrypt/mpi/mpih-mul2-asm.S
Symbolic link
1
jni/libgcrypt/mpi/mpih-mul2-asm.S
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/amd64/mpih-mul2.S
|
||||
1
jni/libgcrypt/mpi/mpih-mul2.c
Symbolic link
1
jni/libgcrypt/mpi/mpih-mul2.c
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/generic/mpih-mul2.c
|
||||
1
jni/libgcrypt/mpi/mpih-mul3-asm.S
Symbolic link
1
jni/libgcrypt/mpi/mpih-mul3-asm.S
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/amd64/mpih-mul3.S
|
||||
1
jni/libgcrypt/mpi/mpih-mul3.c
Symbolic link
1
jni/libgcrypt/mpi/mpih-mul3.c
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/generic/mpih-mul3.c
|
||||
1
jni/libgcrypt/mpi/mpih-rshift-asm.S
Symbolic link
1
jni/libgcrypt/mpi/mpih-rshift-asm.S
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/amd64/mpih-rshift.S
|
||||
1
jni/libgcrypt/mpi/mpih-rshift.c
Symbolic link
1
jni/libgcrypt/mpi/mpih-rshift.c
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/generic/mpih-rshift.c
|
||||
1
jni/libgcrypt/mpi/mpih-sub1-asm.S
Symbolic link
1
jni/libgcrypt/mpi/mpih-sub1-asm.S
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/amd64/mpih-sub1.S
|
||||
1
jni/libgcrypt/mpi/mpih-sub1.c
Symbolic link
1
jni/libgcrypt/mpi/mpih-sub1.c
Symbolic link
@@ -0,0 +1 @@
|
||||
.././mpi/generic/mpih-sub1.c
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user