# HG changeset patch # User james # Date 1075225784 0 # Node ID ee095936383847af811d75c577a0e61307fff94e # Parent 51ce4f55d8c324b772bb108bc531e8d6b93cc93a [xemacs-hg @ 2004-01-27 17:49:44 by james] Pass $(ldflags) to mmencode and make-path builds. diff -r 51ce4f55d8c3 -r ee0959363838 lib-src/ChangeLog --- a/lib-src/ChangeLog Tue Jan 27 13:33:21 2004 +0000 +++ b/lib-src/ChangeLog Tue Jan 27 17:49:44 2004 +0000 @@ -1,3 +1,8 @@ +2004-01-21 Jerry James + + * Makefile.in.in (mmencode): Pass $(ldflags) to the compiler. + * Makefile.in.in (make-path): Ditto. + 2003-10-13 Jerry James * ellcc.c: Remove attribute definitions, include new compiler.h diff -r 51ce4f55d8c3 -r ee0959363838 lib-src/Makefile.in.in --- a/lib-src/Makefile.in.in Tue Jan 27 13:33:21 2004 +0000 +++ b/lib-src/Makefile.in.in Tue Jan 27 17:49:44 2004 +0000 @@ -387,11 +387,11 @@ ## mmencode binary is used by tm - but is really part of the metamail package ## mmencode.c was merged copy of mmencode.c and codes.c of metamail mmencode : ${srcdir}/mmencode.c - $(CC) $(cflags) ${srcdir}/mmencode.c -o $@ + $(CC) $(cflags) ${srcdir}/mmencode.c $(ldflags) -o $@ ## The timer utility (timer.c, getdate.y) is not used in XEmacs ## because XEmacs provides built-in timer facilities. make-path: ${srcdir}/make-path.c ../src/config.h - $(CC) -Demacs $(cflags) ${srcdir}/make-path.c -o $@ + $(CC) -Demacs $(cflags) ${srcdir}/make-path.c $(ldflags) -o $@