Mercurial > hg > xemacs-beta
annotate modules/sample/external/configure.ac @ 2955:4d269e525e21
[xemacs-hg @ 2005-09-26 22:18:59 by adrian]
xemacs-21.5-clean: Getting texinfmt.el to compile core .texi again
-------------------- ChangeLog entries follow: --------------------
man/ChangeLog addition:
2005-09-27 Adrian Aichner <adrian@xemacs.org>
* lispref/packaging.texi: Get file to compile with teinfmt.el.
* lispref/packaging.texi (Packaging): Ditto.
* lispref/packaging.texi (Package Overview): Ditto.
* lispref/packaging.texi (The User View): Ditto.
* lispref/packaging.texi (The Library Maintainer View): Ditto.
* lispref/packaging.texi (Infrastructure): Ditto.
* lispref/packaging.texi (Obtaining): Ditto.
* lispref/packaging.texi (Local.rules File): Ditto.
* lispref/packaging.texi (package-info.in): Ditto.
* lispref/packaging.texi (Makefile): Ditto.
* lispref/packaging.texi (Documenting Packages): Ditto.
2005-09-27 Adrian Aichner <adrian@xemacs.org>
* internals/internals.texi (A Summary of the Various XEmacs
Modules): Get file to compile with texinfmt.el.
* internals/internals.texi (Windows Build Flags): Ditto.
| author | adrian |
|---|---|
| date | Mon, 26 Sep 2005 22:19:05 +0000 |
| parents | 25e260cb7994 |
| children | dce479915b74 |
| rev | line source |
|---|---|
| 996 | 1 # Process this file with autoconf to produce a configure script. |
| 2 AC_INIT([Sample module], [1.0], [xemacs-beta@xemacs.org]) | |
| 3 AC_PREREQ(2.53) | |
| 4 AC_REVISION($Revision: 1.1 $) | |
| 5 AC_COPYRIGHT([Configuration script for the sample module. | |
| 6 Copyright (C) 2002 Jerry James. | |
| 7 | |
| 8 This file is not part of XEmacs.]) | |
| 9 | |
| 10 AC_CONFIG_SRCDIR([sample.c]) | |
| 11 AC_PROG_CC | |
| 12 AC_PROG_INSTALL | |
| 13 AC_SUBST(CFLAGS) | |
| 14 AC_SUBST(LDFLAGS) | |
| 15 | |
| 16 # Find ELLCC | |
| 17 AC_ARG_VAR([ELLCC], [The path to the ellcc module compiler]) | |
| 18 AC_PATH_PROG([ELLCC], [ellcc], ["FAIL"]) | |
| 19 AS_IF([test "$ELLCC" = "FAIL"], [AS_ERROR([Cannot find ellcc])]) | |
| 20 AC_SUBST(ELLCC) | |
| 21 | |
| 22 # Insert autoconf macros here to find the headers, libraries, other | |
| 23 # programs, etc. needed by your module. | |
| 24 | |
| 25 AC_CONFIG_FILES([Makefile.in Makefile]) | |
| 26 AC_OUTPUT |
