diff options
Diffstat (limited to 'Build/source/utils/pdfopen')
-rw-r--r-- | Build/source/utils/pdfopen/Makefile.am.orig | 12 | ||||
-rw-r--r-- | Build/source/utils/pdfopen/ac/withenable.ac | 3 | ||||
-rw-r--r-- | Build/source/utils/pdfopen/configure.ac.orig | 25 |
3 files changed, 40 insertions, 0 deletions
diff --git a/Build/source/utils/pdfopen/Makefile.am.orig b/Build/source/utils/pdfopen/Makefile.am.orig new file mode 100644 index 00000000000..7aab0fdef8a --- /dev/null +++ b/Build/source/utils/pdfopen/Makefile.am.orig @@ -0,0 +1,12 @@ + +AM_CFLAGS = $(X_CFLAGS) + +LDADD = $(X_LIBS) -lX11 -lXmu $(X_EXTRA_LIBS) + +bin_PROGRAMS = pdfopen pdfclose + +pdfopen_SOURCES = pdfopen.c sendx.c + +pdfclose_SOURCES = pdfclose.c sendx.c + + diff --git a/Build/source/utils/pdfopen/ac/withenable.ac b/Build/source/utils/pdfopen/ac/withenable.ac new file mode 100644 index 00000000000..6d01cecc640 --- /dev/null +++ b/Build/source/utils/pdfopen/ac/withenable.ac @@ -0,0 +1,3 @@ +## utils/pdfopen/ac/withenable.ac +## configure options and TL libraries required for pdfopen +KPSE_WITH_PROG([pdfopen]) diff --git a/Build/source/utils/pdfopen/configure.ac.orig b/Build/source/utils/pdfopen/configure.ac.orig new file mode 100644 index 00000000000..882aa35bd14 --- /dev/null +++ b/Build/source/utils/pdfopen/configure.ac.orig @@ -0,0 +1,25 @@ +dnl Process this file with autoconf to produce a configure script. +dnl this is for autoconf 2.5x + +AC_INIT(pdfopen, 0.5, taco@metatex.org) + +AC_CONFIG_AUX_DIR(config) + +AM_INIT_AUTOMAKE(pdfopen, 0.5) + +AC_CONFIG_FILES(Makefile) + +AC_PROG_CC + +dnl AC_PROG_INSTALL + +dnl Checks for header files. + +dnl Checks for typedefs, structures, and compiler characteristics. + +dnl Checks for library functions. + +dnl Find Xlibs. +AC_PATH_XTRA + +AC_OUTPUT |