mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 08:51:50 -06:00
9b443b908f
Silence warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" http://man7.org/tlpi/code/faq.html#use_default_source Closes: https://pagure.io/freeipa/issue/6818 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Simo Sorce <ssorce@redhat.com>
81 lines
1.5 KiB
Makefile
81 lines
1.5 KiB
Makefile
libasn1c_la_SOURCES = \
|
|
asn_application.h \
|
|
asn_codecs.h \
|
|
asn_codecs_prim.c \
|
|
asn_codecs_prim.h \
|
|
asn_internal.h \
|
|
asn_SEQUENCE_OF.c \
|
|
asn_SEQUENCE_OF.h \
|
|
asn_SET_OF.c \
|
|
asn_SET_OF.h \
|
|
asn_system.h \
|
|
ber_decoder.c \
|
|
ber_decoder.h \
|
|
ber_tlv_length.c \
|
|
ber_tlv_length.h \
|
|
ber_tlv_tag.c \
|
|
ber_tlv_tag.h \
|
|
BIT_STRING.c \
|
|
BIT_STRING.h \
|
|
constraints.c \
|
|
constraints.h \
|
|
constr_CHOICE.c \
|
|
constr_CHOICE.h \
|
|
constr_SEQUENCE.c \
|
|
constr_SEQUENCE.h \
|
|
constr_SEQUENCE_OF.c \
|
|
constr_SEQUENCE_OF.h \
|
|
constr_SET_OF.c \
|
|
constr_SET_OF.h \
|
|
constr_TYPE.c \
|
|
constr_TYPE.h \
|
|
der_encoder.c \
|
|
der_encoder.h \
|
|
GetKeytabControl.c \
|
|
GetKeytabControl.h \
|
|
GKCurrentKeys.c \
|
|
GKCurrentKeys.h \
|
|
GKNewKeys.c \
|
|
GKNewKeys.h \
|
|
GKReply.c \
|
|
GKReply.h \
|
|
Int32.c \
|
|
Int32.h \
|
|
INTEGER.c \
|
|
INTEGER.h \
|
|
KrbKey.c \
|
|
KrbKey.h \
|
|
NativeEnumerated.c \
|
|
NativeEnumerated.h \
|
|
NativeInteger.c \
|
|
NativeInteger.h \
|
|
OCTET_STRING.c \
|
|
OCTET_STRING.h \
|
|
per_decoder.c \
|
|
per_decoder.h \
|
|
per_encoder.c \
|
|
per_encoder.h \
|
|
per_opentype.c \
|
|
per_opentype.h \
|
|
per_support.c \
|
|
per_support.h \
|
|
TypeValuePair.c \
|
|
TypeValuePair.h \
|
|
xer_decoder.c \
|
|
xer_decoder.h \
|
|
xer_encoder.c \
|
|
xer_encoder.h \
|
|
xer_support.c \
|
|
xer_support.h
|
|
|
|
EXTRA_DIST = ipa.asn1
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/util
|
|
|
|
noinst_LTLIBRARIES=libasn1c.la
|
|
|
|
regenerate:
|
|
asn1c -fskeletons-copy -fnative-types ipa.asn1
|
|
$(SED) -i s/_BSD_SOURCE/_DEFAULT_SOURCE/g asn_system.h
|
|
rm -f converter-sample.c Makefile.am.sample
|