39 lines
579 B
Plaintext
39 lines
579 B
Plaintext
Description:
|
|
Core files for generic crypto package
|
|
|
|
Files:
|
|
lib/gc.h
|
|
lib/gc-libgcrypt.c
|
|
lib/gc-gnulib.c
|
|
m4/gc.m4
|
|
m4/libgcrypt.m4
|
|
|
|
Depends-on:
|
|
havelib
|
|
open
|
|
|
|
configure.ac:
|
|
gl_GC
|
|
gl_CONDITIONAL([GL_COND_OBJ_GC_LIBGCRYPT], [test "$ac_cv_libgcrypt" = yes])
|
|
if test $gl_cond_libtool = false; then
|
|
gl_ltlibdeps="$gl_ltlibdeps $LTLIBGCRYPT"
|
|
gl_libdeps="$gl_libdeps $LIBGCRYPT"
|
|
fi
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_GC_LIBGCRYPT
|
|
lib_SOURCES += gc-libgcrypt.c
|
|
else
|
|
lib_SOURCES += gc-gnulib.c
|
|
endif
|
|
lib_LDFLAGS += $(LTLIBGCRYPT)
|
|
|
|
Include:
|
|
"gc.h"
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
Simon Josefsson
|