diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2020-05-04 03:04:59 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2020-05-04 03:04:59 +0200 |
commit | 11ba27271f8e085b06c79b732cf92f88e492f487 (patch) | |
tree | 01e60e8b46051143ee60b8cc34fce507a4078f08 /Makefile.am | |
parent | faaeaa43e1978fe3d24d7289487021664397cdbe (diff) | |
download | fetchmail-11ba27271f8e085b06c79b732cf92f88e492f487.tar.gz fetchmail-11ba27271f8e085b06c79b732cf92f88e492f487.tar.bz2 fetchmail-11ba27271f8e085b06c79b732cf92f88e492f487.zip |
Add fm_realpath(): a malloc()ating realpath() wrapper.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 77fe40f5..2ba02438 100644 --- a/Makefile.am +++ b/Makefile.am @@ -47,7 +47,7 @@ DEPENDENCIES= libfm.a $(LIBOBJS) check_PROGRAMS= -TESTS= t.smoke t.validate-xhtml10 t.validate-xhtml t.x509_name_match +TESTS= t.smoke t.validate-xhtml10 t.validate-xhtml t.x509_name_match t.realpath LOG_COMPILER= env LC_ALL=C TZ=UTC $(SHELL) if NEED_TRIO @@ -72,7 +72,8 @@ fetchmail_SOURCES= fetchmail.h getopt.h \ unmime.c conf.c checkalias.c uid_db.h uid_db.c\ lock.h lock.c \ rcfile_l.l rcfile_y.y \ - ucs/norm_charmap.c ucs/norm_charmap.h + ucs/norm_charmap.c ucs/norm_charmap.h \ + fm_realpath.c if POP2_ENABLE fetchmail_SOURCES += pop2.c endif @@ -102,7 +103,9 @@ fetchmail_SOURCES += libesmtp/getaddrinfo.h libesmtp/getaddrinfo.c endif check_PROGRAMS += rfc822 unmime netrc rfc2047e mxget rfc822valid \ - x509_name_match + x509_name_match fm_realpath + +fm_realpath_CFLAGS= -DTEST rfc2047e_CFLAGS= -DTEST |