File: configure.ac

package info (click to toggle)
gnuplot-mode 1%3A0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 1,400 kB
  • ctags: 318
  • sloc: lisp: 5,828; sh: 524; makefile: 33
file content (19 lines) | stat: -rw-r--r-- 500 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.61])
AC_INIT([gnuplot-mode], [0.7], [bruceravel1@gmail.com])
AM_INIT_AUTOMAKE

# Checks for programs.
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_CHECK_PROGS(DVIPS, dvips, no)
AC_CHECK_PROGS(LATEX, latex latex2e, no)
AC_CHECK_PROGS(PDFLATEX, pdflatex, no)

# Check for Emacs and the Emacs site-lisp directory
AM_PATH_LISPDIR

AC_CONFIG_FILES([Makefile])
AC_OUTPUT