summaryrefslogtreecommitdiff
path: root/Build/source/m4
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/m4')
-rw-r--r--Build/source/m4/kpse-pkgs.m41
-rw-r--r--Build/source/m4/kpse-socket-libs.m428
-rw-r--r--Build/source/m4/kpse-win32.m44
3 files changed, 31 insertions, 2 deletions
diff --git a/Build/source/m4/kpse-pkgs.m4 b/Build/source/m4/kpse-pkgs.m4
index e3050dc219a..328ece77abd 100644
--- a/Build/source/m4/kpse-pkgs.m4
+++ b/Build/source/m4/kpse-pkgs.m4
@@ -99,6 +99,7 @@ xdv2pdf
xdvik
xdvipdfmx
tetex
+texlive
])]) # KPSE_TEXK_PKGS
diff --git a/Build/source/m4/kpse-socket-libs.m4 b/Build/source/m4/kpse-socket-libs.m4
new file mode 100644
index 00000000000..1ff41d79914
--- /dev/null
+++ b/Build/source/m4/kpse-socket-libs.m4
@@ -0,0 +1,28 @@
+# Public macros for the teTeX / TeX Live (TL) tree.
+# Copyright (C) 1997 Karl Berry <karl@cs.umb.edu>
+# Copyright (C) 2009 Peter Breitenlohner <tex-live@tug.org>
+# with help from Taco Hoekwater <taco@luatex.org>
+#
+# This file is free software; the copyright holders
+# give unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# serial 0
+
+# KPSE_CHECK_SOCKET_LIBS
+# ----------------------
+# Set ac_cv_search_connect as AC_SEARCH_LIBS([connect], [LIB...])
+# would do.
+# -lsocket is needed on Solaris, at least. Maybe -lnsl on SCO, too?
+# See ac_path_xtra.
+# For WIN32 systems we need -lwsock32 but AC_SEARCH_LIBS would fail.
+AC_DEFUN([KPSE_CHECK_SOCKET_LIBS],
+[AC_REQUIRE([KPSE_CHECK_WIN32])
+AS_IF([test "x$kpse_cv_have_win32" = xno],
+ [kpse_save_LIBS=$LIBS
+ AC_SEARCH_LIBS([connect], [socket nsl])
+ LIBS=$kpse_save_LIBS],
+ [AC_CHECK_LIB([wsock32], [main],
+ [ac_cv_search_connect=wsock32],
+ [ac_cv_search_connect=no])])
+]) # KPSE_CHECK_SOCKET_LIBS
diff --git a/Build/source/m4/kpse-win32.m4 b/Build/source/m4/kpse-win32.m4
index 372be5d2433..b953b76ee62 100644
--- a/Build/source/m4/kpse-win32.m4
+++ b/Build/source/m4/kpse-win32.m4
@@ -1,8 +1,8 @@
# Public macros for the teTeX / TeX Live (TL) tree.
# Copyright (C) 2009 Peter Breitenlohner <tex-live@tug.org>
#
-# This file is free software; the copyright holders
-# give unlimited permission to copy and/or distribute it,
+# 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.
# serial 0