diff options
author | Karl Berry <karl@freefriends.org> | 2018-07-09 17:00:10 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-07-09 17:00:10 +0000 |
commit | 3d990936641ada4c678546b3de57c2943d72ac76 (patch) | |
tree | 2b657074af1e08e80ade6c0b2d559c77a2f0a020 /Build | |
parent | f5c38382af2dac414526d1baea6869c060569b2f (diff) |
xpdfopen: omit -lXmu
git-svn-id: svn://tug.org/texlive/trunk@48168 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/utils/README | 4 | ||||
-rw-r--r-- | Build/source/utils/xpdfopen/ChangeLog | 6 | ||||
-rw-r--r-- | Build/source/utils/xpdfopen/Makefile.am | 4 | ||||
-rw-r--r-- | Build/source/utils/xpdfopen/Makefile.in | 2 |
4 files changed, 11 insertions, 5 deletions
diff --git a/Build/source/utils/README b/Build/source/utils/README index d9b25708dd5..fe8d1cf5169 100644 --- a/Build/source/utils/README +++ b/Build/source/utils/README @@ -39,9 +39,9 @@ vlna 1.5 - checked 10may12 xindy - see just below -xpdfopen 0.86 - checked 24may14 +xpdfopen 0.86 - checked 9jul18 http://ctan.org/pkg/xpdfopen/ - http://cs.acadiau.ca/~jdiamond/xpdfopen/ + http://cs.acadiau.ca/~jdiamond/xpdfopen/ (404; no reply from author, 9jul18) xindy 2.5.1 - checked 15sep14 diff --git a/Build/source/utils/xpdfopen/ChangeLog b/Build/source/utils/xpdfopen/ChangeLog index 184085d24cc..a0c66c224ac 100644 --- a/Build/source/utils/xpdfopen/ChangeLog +++ b/Build/source/utils/xpdfopen/ChangeLog @@ -1,3 +1,9 @@ +2018-07-09 Karl Berry <karl@tug.org> + + * Makefile.am (LDADD): remove -lXmu, seems nothing it used from + that library. Let's hope that X libraries themselves don't either. + Report from Ulrich Mueller, 22 Mar 2018 08:55:50. + 2016-02-22 Akira Kakuto <kakuto@fuk.kindai.ac.jp> * Makefile.am, configure.ac: New convention. diff --git a/Build/source/utils/xpdfopen/Makefile.am b/Build/source/utils/xpdfopen/Makefile.am index 25d3d9b27c0..df2c45826de 100644 --- a/Build/source/utils/xpdfopen/Makefile.am +++ b/Build/source/utils/xpdfopen/Makefile.am @@ -1,7 +1,7 @@ ## $Id$ ## Makefile.am for the TeX Live subdirectory utils/xpdfopen/ ## -## Copyright 2017 Karl Berry <tex-live@tug.org> +## Copyright 2017-2018 Karl Berry <tex-live@tug.org> ## Copyright 2009-2015 Peter Breitenlohner <tex-live@tug.org> ## You may freely use, modify and/or distribute this file. @@ -17,7 +17,7 @@ NEVER_NAMES += $(NEVER_NAMES_SUB) AM_CPPFLAGS = $(X_CFLAGS) AM_CFLAGS = $(WARNING_CFLAGS) -LDADD = $(X_LIBS) -lX11 -lXmu $(X_EXTRA_LIBS) +LDADD = $(X_LIBS) -lX11 $(X_EXTRA_LIBS) bin_PROGRAMS = pdfopen pdfclose diff --git a/Build/source/utils/xpdfopen/Makefile.in b/Build/source/utils/xpdfopen/Makefile.in index da5b1dd8ccd..45af142f211 100644 --- a/Build/source/utils/xpdfopen/Makefile.in +++ b/Build/source/utils/xpdfopen/Makefile.in @@ -337,7 +337,7 @@ NEVER_NAMES_SUB = -o -name .deps -o -name .dirstamp -o -name '*.$(OBJEXT)' NEVER_NAMES_LT = -o -name .libs -o -name '*.lo' AM_CPPFLAGS = $(X_CFLAGS) AM_CFLAGS = $(WARNING_CFLAGS) -LDADD = $(X_LIBS) -lX11 -lXmu $(X_EXTRA_LIBS) +LDADD = $(X_LIBS) -lX11 $(X_EXTRA_LIBS) common_sources = \ @XPDFOPEN_TREE@/sendx.c \ @XPDFOPEN_TREE@/utils.c |