summaryrefslogtreecommitdiff
path: root/Build/source/texk/xdvik/m4
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2012-02-21 11:02:00 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2012-02-21 11:02:00 +0000
commit72294eedb0b0504b20e94216098cd7a55947b833 (patch)
tree38f49d5b22c6cc11f3a5b4eeeca4acca0e008949 /Build/source/texk/xdvik/m4
parentbada20cd326811448f43e0398d78d9b089e3a8d7 (diff)
xdvik: Remove obsolete configure tests
git-svn-id: svn://tug.org/texlive/trunk@25458 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/xdvik/m4')
-rw-r--r--Build/source/texk/xdvik/m4/xdvi-cc-concat.m421
-rw-r--r--Build/source/texk/xdvik/m4/xdvi-sys-sunos4.m421
2 files changed, 0 insertions, 42 deletions
diff --git a/Build/source/texk/xdvik/m4/xdvi-cc-concat.m4 b/Build/source/texk/xdvik/m4/xdvi-cc-concat.m4
deleted file mode 100644
index 27d203dcab3..00000000000
--- a/Build/source/texk/xdvik/m4/xdvi-cc-concat.m4
+++ /dev/null
@@ -1,21 +0,0 @@
-# Autoconf macros for xdvik.
-# Copyright (C) 1999 - 2009 Paul Vojta <xdvi-core@lists.sourceforge.net>
-#
-# This file is free software; the copyright holder
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# XDVI_CC_CONCAT
-# --------------
-# Check whether the C compiler does string concatenation.
-AC_DEFUN([XDVI_CC_CONCAT],
-[AC_CACHE_CHECK([whether C compiler supports string concatenation],
- [xdvi_cv_cc_concat],
- [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>]],
- [[puts("Testing" " string" " concatenation");]])],
- [xdvi_cv_cc_concat=yes],
- [xdvi_cv_cc_concat=no])])
-if test "x$xdvi_cv_cc_concat" = xyes; then
- AC_DEFINE([HAVE_CC_CONCAT], 1, [Define if your C compiler can do string concatenation])
-fi
-]) # XDVI_CC_CONCAT
diff --git a/Build/source/texk/xdvik/m4/xdvi-sys-sunos4.m4 b/Build/source/texk/xdvik/m4/xdvi-sys-sunos4.m4
deleted file mode 100644
index 45e52761355..00000000000
--- a/Build/source/texk/xdvik/m4/xdvi-sys-sunos4.m4
+++ /dev/null
@@ -1,21 +0,0 @@
-# Autoconf macros for xdvik.
-# Copyright (C) 1999 - 2009 Paul Vojta <xdvi-core@lists.sourceforge.net>
-#
-# This file is free software; the copyright holder
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# XDVI_SYS_SUNOS_4
-# ----------------
-# Check for SunOS 4.
-AC_DEFUN([XDVI_SYS_SUNOS_4],
-[AC_CACHE_CHECK([for SunOS 4],
- [xdvi_cv_sys_sunos_4],
- [AS_CASE(["`(uname -sr) 2>/dev/null`"],
- ["SunOS 4."*],
- [xdvi_cv_sys_sunos_4=yes],
- [xdvi_cv_sys_sunos_4=no])])
-if test "x$xdvi_cv_sys_sunos_4" = xyes; then
- AC_DEFINE([SUNOS4], 1, [Define if you are using SunOS 4.x.])
-fi
-]) # XDVI_SYS_SUNOS_4