summaryrefslogtreecommitdiff
path: root/Build/source/utils/songs/songs-2.17/m4
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/songs/songs-2.17/m4')
-rw-r--r--Build/source/utils/songs/songs-2.17/m4/ac_prog_dvips.m441
-rw-r--r--Build/source/utils/songs/songs-2.17/m4/ac_prog_kpsewhich.m441
-rw-r--r--Build/source/utils/songs/songs-2.17/m4/ac_prog_latex.m441
-rw-r--r--Build/source/utils/songs/songs-2.17/m4/ac_prog_makeindex.m441
-rw-r--r--Build/source/utils/songs/songs-2.17/m4/ac_prog_pdflatex.m441
-rw-r--r--Build/source/utils/songs/songs-2.17/m4/ac_prog_texhash.m441
-rw-r--r--Build/source/utils/songs/songs-2.17/m4/ac_prog_vim.m435
7 files changed, 0 insertions, 281 deletions
diff --git a/Build/source/utils/songs/songs-2.17/m4/ac_prog_dvips.m4 b/Build/source/utils/songs/songs-2.17/m4/ac_prog_dvips.m4
deleted file mode 100644
index 309f3dfc371..00000000000
--- a/Build/source/utils/songs/songs-2.17/m4/ac_prog_dvips.m4
+++ /dev/null
@@ -1,41 +0,0 @@
-#
-# Copyright (C) 2004 Boretti Mathieu
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-#
-#
-# AC_PROG_DVIPS
-#
-# Test for dvips
-# and set $dvips to the correct value.
-#
-#
-dnl @synopsis AC_PROG_DVIPS
-dnl
-dnl This macro test if dvips is installed. If dvips
-dnl is installed, it set $dvips to the right value
-dnl
-dnl @version 1.3
-dnl @author Mathieu Boretti boretti@eig.unige.ch
-dnl
-AC_DEFUN([AC_PROG_DVIPS],[
-AC_CHECK_PROGS(dvips,dvips,no)
-export dvips;
-if test $dvips = "no" ;
-then
- AC_MSG_ERROR([Unable to find a dvips application]);
-fi;
-AC_SUBST(dvips)
-])
diff --git a/Build/source/utils/songs/songs-2.17/m4/ac_prog_kpsewhich.m4 b/Build/source/utils/songs/songs-2.17/m4/ac_prog_kpsewhich.m4
deleted file mode 100644
index b2c2bdce497..00000000000
--- a/Build/source/utils/songs/songs-2.17/m4/ac_prog_kpsewhich.m4
+++ /dev/null
@@ -1,41 +0,0 @@
-#
-# Copyright (C) 2004 Boretti Mathieu
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-#
-#
-# AC_PROG_KPSEWHICH
-#
-# Test for kpsewhich
-# and set $kpsewhich to the correct value.
-#
-#
-dnl @synopsis AC_PROG_KPSEWHICH
-dnl
-dnl This macro test if kpsewhich is installed. If kpsewhich
-dnl is installed, it set $kpsewhich to the right value
-dnl
-dnl @version 1.3
-dnl @author Mathieu Boretti boretti@eig.unige.ch
-dnl
-AC_DEFUN([AC_PROG_KPSEWHICH],[
-AC_CHECK_PROGS(kpsewhich,[kpsewhich],no)
-export kpsewhich;
-if test $kpsewhich = "no" ;
-then
- AC_MSG_ERROR([Unable to find the kpsewhich application]);
-fi
-AC_SUBST(kpsewhich)
-])
diff --git a/Build/source/utils/songs/songs-2.17/m4/ac_prog_latex.m4 b/Build/source/utils/songs/songs-2.17/m4/ac_prog_latex.m4
deleted file mode 100644
index 7204471da1e..00000000000
--- a/Build/source/utils/songs/songs-2.17/m4/ac_prog_latex.m4
+++ /dev/null
@@ -1,41 +0,0 @@
-#
-# Copyright (C) 2004 Boretti Mathieu
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-#
-#
-# AC_PROG_LATEX
-#
-# Test for latex or elatax or lambda
-# and set $latex to the correct value.
-#
-#
-dnl @synopsis AC_PROG_LATEX
-dnl
-dnl This macro test if latex is installed. If latex
-dnl is installed, it set $latex to the right value
-dnl
-dnl @version 1.3
-dnl @author Mathieu Boretti boretti@eig.unige.ch
-dnl
-AC_DEFUN([AC_PROG_LATEX],[
-AC_CHECK_PROGS(latex,[latex elatex lambda],no)
-export latex;
-if test $latex = "no" ;
-then
- AC_MSG_ERROR([Unable to find a LaTeX application]);
-fi
-AC_SUBST(latex)
-])
diff --git a/Build/source/utils/songs/songs-2.17/m4/ac_prog_makeindex.m4 b/Build/source/utils/songs/songs-2.17/m4/ac_prog_makeindex.m4
deleted file mode 100644
index 90d884a66d4..00000000000
--- a/Build/source/utils/songs/songs-2.17/m4/ac_prog_makeindex.m4
+++ /dev/null
@@ -1,41 +0,0 @@
-#
-# Copyright (C) 2004 Boretti Mathieu
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-#
-#
-# AC_PROG_MAKEINDEX
-#
-# Test for makeindex
-# and set $makeindex to the correct value.
-#
-#
-dnl @synopsis AC_PROG_MAKEINDEX
-dnl
-dnl This macro test if makeindex is installed. If makeindex
-dnl is installed, it set $makeindex to the right value
-dnl
-dnl @version 1.3
-dnl @author Mathieu Boretti boretti@eig.unige.ch
-dnl
-AC_DEFUN([AC_PROG_MAKEINDEX],[
-AC_CHECK_PROGS(makeindex,makeindex,no)
-export makeindex;
-if test $makeindex = "no" ;
-then
- AC_MSG_ERROR([Unable to find a MakeIndex application]);
-fi
-AC_SUBST(makeindex)
-])
diff --git a/Build/source/utils/songs/songs-2.17/m4/ac_prog_pdflatex.m4 b/Build/source/utils/songs/songs-2.17/m4/ac_prog_pdflatex.m4
deleted file mode 100644
index 2b839a14a8e..00000000000
--- a/Build/source/utils/songs/songs-2.17/m4/ac_prog_pdflatex.m4
+++ /dev/null
@@ -1,41 +0,0 @@
-#
-# Copyright (C) 2004 Boretti Mathieu
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-#
-#
-# AC_PROG_PDFLATEX
-#
-# Test for pdflatex
-# and set $pdflatex to the correct value.
-#
-#
-dnl @synopsis AC_PROG_PDFLATEX
-dnl
-dnl This macro test if pdflatex is installed. If pdflatex
-dnl is installed, it set $pdflatex to the right value
-dnl
-dnl @version 1.3
-dnl @author Mathieu Boretti boretti@eig.unige.ch
-dnl
-AC_DEFUN([AC_PROG_PDFLATEX],[
-AC_CHECK_PROGS(pdflatex,[pdflatex],no)
-export pdflatex;
-if test $pdflatex = "no" ;
-then
- AC_MSG_ERROR([Unable to find a PDFLaTeX application]);
-fi
-AC_SUBST(pdflatex)
-])
diff --git a/Build/source/utils/songs/songs-2.17/m4/ac_prog_texhash.m4 b/Build/source/utils/songs/songs-2.17/m4/ac_prog_texhash.m4
deleted file mode 100644
index 12c8926da35..00000000000
--- a/Build/source/utils/songs/songs-2.17/m4/ac_prog_texhash.m4
+++ /dev/null
@@ -1,41 +0,0 @@
-#
-# Copyright (C) 2004 Boretti Mathieu
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-#
-#
-# AC_PROG_TEXHASH
-#
-# Test for texhash
-# and set $texhash to the correct value.
-#
-#
-dnl @synopsis AC_PROG_TEXHASH
-dnl
-dnl This macro test if texhash is installed. If texhash
-dnl is installed, it set $texhash to the right value
-dnl
-dnl @version 1.3
-dnl @author Mathieu Boretti boretti@eig.unige.ch
-dnl
-AC_DEFUN([AC_PROG_TEXHASH],[
-AC_CHECK_PROGS(texhash,[texhash],no)
-export texhash;
-if test $texhash = "no" ;
-then
- AC_MSG_ERROR([Unable to find the texhash application]);
-fi
-AC_SUBST(texhash)
-])
diff --git a/Build/source/utils/songs/songs-2.17/m4/ac_prog_vim.m4 b/Build/source/utils/songs/songs-2.17/m4/ac_prog_vim.m4
deleted file mode 100644
index 7d31acb63e7..00000000000
--- a/Build/source/utils/songs/songs-2.17/m4/ac_prog_vim.m4
+++ /dev/null
@@ -1,35 +0,0 @@
-#
-# Copyright (C) 2013 Kevin W. Hamlen
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-#
-#
-# AC_PROG_VIM
-#
-# Test for vim and set $vim to the correct value.
-#
-#
-dnl @synopsis AC_PROG_VIM
-dnl
-dnl This macro tests if vim is installed. If vim
-dnl is installed, it sets $vim to the right value
-dnl
-dnl @version 1.0
-dnl @author Kevin W. Hamlen
-dnl
-AC_DEFUN([AC_PROG_VIM],[
-AC_CHECK_PROG(vim,[vim],vim)
-export $vim;
-])