diff options
author | Roland McGrath <roland@gnu.org> | 1999-05-01 00:34:42 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-05-01 00:34:42 +0000 |
commit | 280a7878941a7129f6e89a8360a37a9b6fcacdbb (patch) | |
tree | 11de500ab4d57eb763457fc2537bed4219e49fd5 /linux/configure.in | |
parent | 597c0f6a73e28671bd8f99cde64bda37eac294ec (diff) |
1999-04-30 Roland McGrath <roland@baalperazim.frob.com>
* i386/linux/Drivers.in: Don't create asm-${systype} symlinks here.
* linux/configure.in: New file. Create them here instead.
* linux/dummy.in: New file, used by configure.
* linux/configure: New file (generated by autoconf).
* configure.in: Configure in linux subdir.
* configure: Regenerated.
Diffstat (limited to 'linux/configure.in')
-rw-r--r-- | linux/configure.in | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/linux/configure.in b/linux/configure.in new file mode 100644 index 0000000..9e51d6b --- /dev/null +++ b/linux/configure.in @@ -0,0 +1,27 @@ +dnl Configure script for linux code snarfed into GNU Mach. +dnl Copyright 1999 Free Software Foundation, Inc. + +dnl Permission to use, copy, modify and distribute this software and its +dnl documentation is hereby granted, provided that both the copyright +dnl notice and this permission notice appear in all copies of the +dnl software, derivative works or modified versions, and any portions +dnl thereof, and that both notices appear in supporting documentation. +dnl +dnl THE FREE SOFTWARE FOUNDATION ALLOWS FREE USE OF THIS SOFTWARE IN ITS +dnl "AS IS" CONDITION. THE FREE SOFTWARE FOUNDATION DISCLAIMS ANY +dnl LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE +dnl USE OF THIS SOFTWARE. + +AC_INIT(src/include/linux/version.h) +AC_PREREQ(2.12) +sinclude([../aclocal.m4]) + +hurd_SYSTYPE + +AC_LINK_FILES(src/include/asm-${systype} dev/include/asm-${systype}, + src/include/asm dev/include/asm) + +dnl We need to write these bogus output files to make autoconf create +dnl the directories where the directory symlinks need to go. +AC_OUTPUT(src/.dummy:dummy dev/.dummy:dummy + src/include/.dummy:dummy dev/include/.dummy:dummy) |