diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-03-20 10:32:26 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-03-20 10:32:26 +0000 |
commit | 868ed760a9b6b4748e6f6766f96a8546b3a7e5a1 (patch) | |
tree | 6469e87b99787526d623e316f95f3d743a315faa /Build/source/utils/psutils/configure.ac | |
parent | 2f1ef2d6afccb48b753a109f76a36ea15b25b1dd (diff) |
new build system
git-svn-id: svn://tug.org/texlive/trunk@12462 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/psutils/configure.ac')
-rw-r--r-- | Build/source/utils/psutils/configure.ac | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Build/source/utils/psutils/configure.ac b/Build/source/utils/psutils/configure.ac new file mode 100644 index 00000000000..2f08435c19a --- /dev/null +++ b/Build/source/utils/psutils/configure.ac @@ -0,0 +1,21 @@ +dnl Process this file with autoconf to produce a configure script. +dnl +dnl Copyright (C) 2009 Peter Breitenlohner <tex-live@tug.org> +dnl +dnl This file is free software; the copyright holder +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. +dnl +AC_INIT([psutils for TeX Live], [1.17], [tex-k@tug.org]) +AC_PREREQ([2.63]) +AC_CONFIG_SRCDIR([psutil.c]) +AC_CONFIG_AUX_DIR([../../build-aux]) + +AM_INIT_AUTOMAKE([foreign dist-bzip2]) +AM_MAINTAINER_MODE + +AC_PROG_CC + +AC_CONFIG_FILES([Makefile patchlev.h]) + +AC_OUTPUT |