diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2023-07-03 09:20:48 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2023-07-03 09:20:48 +0000 |
commit | 95fefcec218937576b10de43ca15e8ff0c38cab0 (patch) | |
tree | 8e755b24f5c6b330dc011fcbc2cc804ad152bd88 /lib/libXt/Makefile.in | |
parent | a4e5ebc477e2aea2f4bf19a912b46b842249dff6 (diff) |
Update to libXt 1.3.0.
minor bump because XtReallocArray() was added.
Diffstat (limited to 'lib/libXt/Makefile.in')
-rw-r--r-- | lib/libXt/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libXt/Makefile.in b/lib/libXt/Makefile.in index 4146d7f14..bfe053450 100644 --- a/lib/libXt/Makefile.in +++ b/lib/libXt/Makefile.in @@ -188,9 +188,9 @@ am__relativize = \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" -DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 +DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.xz GZIP_ENV = --best -DIST_TARGETS = dist-bzip2 dist-gzip +DIST_TARGETS = dist-xz dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' @@ -258,7 +258,6 @@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ -MALLOC_DEBUG_ENV = @MALLOC_DEBUG_ENV@ MALLOC_ZERO_CFLAGS = @MALLOC_ZERO_CFLAGS@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAN_SUBSTS = @MAN_SUBSTS@ @@ -351,6 +350,7 @@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -657,6 +657,7 @@ distdir: $(DISTFILES) dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__post_remove_distdir) + dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) @@ -664,7 +665,6 @@ dist-bzip2: distdir dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) - dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) |