last touches

This commit is contained in:
Lev Walkin 2004-08-18 05:43:55 +00:00
parent b45e067b91
commit 3d0b5a38d2
9 changed files with 11 additions and 13 deletions

View File

@ -1,4 +1,8 @@
0.9: 2004-Aug-12
* Reworked subtype constraints handling, aiming at PER-applicability.
0.8.18: 2004-Aug-12
* Parser: fixed multiple IMPORTS problem (incorrect assertion).

View File

@ -184,8 +184,8 @@ target_cpu = @target_cpu@
target_os = @target_os@
target_vendor = @target_vendor@
SUBDIRS = \
libasn1parser libasn1print \
libasn1fix libasn1compiler \
libasn1parser libasn1fix \
libasn1print libasn1compiler \
skeletons examples tests \
doc asn1c

View File

@ -59,7 +59,6 @@ asn1c_LDADD = $(LDADD)
asn1c_DEPENDENCIES = $(top_builddir)/libasn1parser/libasn1parser.la \
$(top_builddir)/libasn1print/libasn1print.la \
$(top_builddir)/libasn1fix/libasn1fix.la \
$(top_builddir)/libasn1cnst/libasn1cnst.la \
$(top_builddir)/libasn1compiler/libasn1compiler.la
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
@ -213,7 +212,6 @@ LDADD = \
$(top_builddir)/libasn1parser/libasn1parser.la \
$(top_builddir)/libasn1print/libasn1print.la \
$(top_builddir)/libasn1fix/libasn1fix.la \
$(top_builddir)/libasn1cnst/libasn1cnst.la \
$(top_builddir)/libasn1compiler/libasn1compiler.la
asn1c_SOURCES = asn1c.c \

1
configure vendored
View File

@ -21409,6 +21409,7 @@ fi;
case "$GCC" in
yes)
CFLAGS="$CFLAGS -W"
CFLAGS="$CFLAGS -Wall"
CFLAGS="$CFLAGS -Wshadow"
CFLAGS="$CFLAGS -Wcast-qual"

View File

@ -53,6 +53,7 @@ AC_SUBST(ADD_CFLAGS)
dnl Add these flags if we're using GCC.
case "$GCC" in
yes)
CFLAGS="$CFLAGS -W"
CFLAGS="$CFLAGS -Wall"
CFLAGS="$CFLAGS -Wshadow"
CFLAGS="$CFLAGS -Wcast-qual"

View File

@ -60,7 +60,6 @@ check_compiler_OBJECTS = check_compiler.$(OBJEXT)
am__DEPENDENCIES_1 = libasn1compiler.la
check_compiler_DEPENDENCIES = $(am__DEPENDENCIES_1) \
$(top_builddir)/libasn1parser/libasn1parser.la \
$(top_builddir)/libasn1cnst/libasn1cnst.la \
$(top_builddir)/libasn1fix/libasn1fix.la
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
@ -215,7 +214,6 @@ libasn1compiler_la_SOURCES = \
TESTS = $(check_PROGRAMS)
check_compiler_LDADD = $(noinst_LTLIBRARIES) \
$(top_builddir)/libasn1parser/libasn1parser.la \
$(top_builddir)/libasn1cnst/libasn1cnst.la \
$(top_builddir)/libasn1fix/libasn1fix.la
all: all-am

View File

@ -1,8 +1,7 @@
AM_CFLAGS = @ADD_CFLAGS@
AM_CPPFLAGS = \
-I$(top_srcdir)/libasn1parser \
-I$(top_srcdir)/libasn1cnst
-I$(top_srcdir)/libasn1parser
noinst_LTLIBRARIES = libasn1fix.la
@ -32,7 +31,6 @@ libasn1fix_la_SOURCES = \
check_PROGRAMS = check_fixer
check_fixer_LDADD = $(noinst_LTLIBRARIES) \
$(top_builddir)/libasn1cnst/libasn1cnst.la \
$(top_builddir)/libasn1parser/libasn1parser.la
check_fixer_DEPENDENCIES = $(check_fixer_LDADD)

View File

@ -210,8 +210,7 @@ target_os = @target_os@
target_vendor = @target_vendor@
AM_CFLAGS = @ADD_CFLAGS@
AM_CPPFLAGS = \
-I$(top_srcdir)/libasn1parser \
-I$(top_srcdir)/libasn1cnst
-I$(top_srcdir)/libasn1parser
noinst_LTLIBRARIES = libasn1fix.la
libasn1fix_la_LDFLAGS = -all-static
@ -238,7 +237,6 @@ libasn1fix_la_SOURCES = \
asn1fix_constraint_compat.c
check_fixer_LDADD = $(noinst_LTLIBRARIES) \
$(top_builddir)/libasn1cnst/libasn1cnst.la \
$(top_builddir)/libasn1parser/libasn1parser.la
check_fixer_DEPENDENCIES = $(check_fixer_LDADD)

View File

@ -546,9 +546,9 @@ distclean-generic:
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
-rm -f asn1p_y.h
-rm -f asn1p_l.c
-rm -f asn1p_y.c
-rm -f asn1p_y.h
clean: clean-am
clean-am: clean-checkPROGRAMS clean-generic clean-libtool \