Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2021-09-09 23:49:49 +0300
committerMike Frysinger <vapier@gentoo.org>2021-09-13 17:14:37 +0300
commit920617998eebd7b3b5707b6d1f58078b9e41dbeb (patch)
treec0f6de16eef5bc1f3e7c53b75ffee0aba4f8e60e /libgloss/doc/configure.ac
parent8fba45f0ccc3b936edfb93671141bf3fe0b0ee5e (diff)
libgloss/newlib: rename configure.in to configure.ac
The .in name has been deprecated for a long time in favor of .ac.
Diffstat (limited to 'libgloss/doc/configure.ac')
-rw-r--r--libgloss/doc/configure.ac16
1 files changed, 16 insertions, 0 deletions
diff --git a/libgloss/doc/configure.ac b/libgloss/doc/configure.ac
new file mode 100644
index 000000000..ab165642a
--- /dev/null
+++ b/libgloss/doc/configure.ac
@@ -0,0 +1,16 @@
+dnl Process this file with autoconf to produce a configure script.
+AC_PREREQ(2.59)
+AC_INIT(porting.texi)
+
+if test "$srcdir" = "." ; then
+ mdir=`echo "${with_multisubdir}/" \
+ | sed -e 's,\([[^/]][[^/]]*\),..,g' -e 's,^/$,,'`
+ AC_CONFIG_AUX_DIR(${mdir}../../..)
+else
+ AC_CONFIG_AUX_DIR(${srcdir}/../..)
+fi
+
+AC_PROG_INSTALL
+
+AC_CONFIG_FILES(Makefile)
+AC_OUTPUT