~ubuntu-branches/debian/squeeze/ntp/squeeze-201010051545

« back to all changes in this revision

Viewing changes to util/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2009-01-05 21:10:03 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090105211003-mh6zc3um4k1uhsj7
Tags: 1:4.2.4p4+dfsg-8
It did not properly check the return value of EVP_VerifyFinal
which results in an malformed DSA signature being treated as
a good signature rather than as an error.  (CVE-2009-0021)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
AUTOMAKE_OPTIONS=       ansi2knr
3
3
 
4
4
bin_PROGRAMS=   @MAKE_NTPTIME@ @MAKE_TICKADJ@ @MAKE_TIMETRIM@ \
5
 
                @MAKE_NTP_KEYGEN@
 
5
                ntp-keygen
6
6
EXTRA_PROGRAMS= audio-pcm byteorder hist jitter kern longsize \
7
 
        ntp-keygen ntptime pps-api precision sht testrs6000 tickadj timetrim
 
7
        ntptime pps-api precision sht testrs6000 tg tickadj timetrim
8
8
 
9
 
INCLUDES=       -I$(top_srcdir)/include
 
9
AM_CPPFLAGS=    -I$(top_srcdir)/include $(LIBOPTS_CFLAGS)
10
10
# LDADD might need RESLIB and ADJLIB
11
11
LDADD=          ../libntp/libntp.a
12
 
ntp_keygen_LDADD=       @LCRYPTO@
 
12
ntp_keygen_SOURCES = ntp-keygen.c ntp-keygen-opts.c ntp-keygen-opts.h
 
13
ntp_keygen_LDADD=       @LCRYPTO@ $(LIBOPTS_LDADD) ../libntp/libntp.a
 
14
 
 
15
ETAGS_ARGS=     Makefile.am
13
16
#EXTRA_DIST=    README TAGS
14
 
EXTRA_DIST=
15
 
ETAGS_ARGS=     Makefile.am
 
17
EXTRA_DIST=     ntp-keygen-opts.def ntp-keygen.1 ntp-keygen-opts.texi ntp-keygen-opts.menu
 
18
BUILT_SOURCES=  ntp-keygen-opts.c ntp-keygen-opts.h ntp-keygen.1        \
 
19
                ntp-keygen-opts.texi ntp-keygen-opts.menu
 
20
man_MANS=       ntp-keygen.1
 
21
run_ag=         cd $(srcdir) && autogen -L ../include
 
22
std_def_list=   $(top_srcdir)/include/debug-opt.def             \
 
23
                $(top_srcdir)/include/autogen-version.def       \
 
24
                $(top_srcdir)/include/copyright.def             \
 
25
                $(top_srcdir)/include/homerc.def                \
 
26
                $(top_srcdir)/include/version.def
 
27
 
 
28
$(srcdir)/ntp-keygen-opts.h: $(srcdir)/ntp-keygen-opts.c
 
29
$(srcdir)/ntp-keygen-opts.c: $(srcdir)/ntp-keygen-opts.def $(std_def_list)
 
30
        $(run_ag) ntp-keygen-opts.def
 
31
 
 
32
$(srcdir)/ntp-keygen.1: $(srcdir)/ntp-keygen-opts.def $(std_def_list)
 
33
        $(run_ag) -Tagman1.tpl -bntp-keygen ntp-keygen-opts.def
 
34
 
 
35
$(srcdir)/ntp-keygen-opts.texi $(srcdir)/ntp-keygen-opts.menu: $(srcdir)/ntp-keygen-opts.def $(std_def_list)
 
36
        $(run_ag) -Taginfo.tpl -DLEVEL=section ntp-keygen-opts.def
 
37
 
 
38
 
 
39
jitter_SOURCES= jitter.c jitter.h
 
40
jitter_LDADD=
16
41
 
17
42
../libntp/libntp.a:
18
43
        cd ../libntp && $(MAKE)