"Fossies" - the Fresh Open Source Software Archive

Member "memtime-1.3/configure.in" (26 May 2000, 1615 Bytes) of package /linux/misc/old/memtime-1.3.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 dnl Process this file with autoconf to produce a configure script.
    2 ##############################################################################
    3 #
    4 # Copyright (c) 2000, Johan Bengtsson
    5 # 
    6 # Permission is hereby granted, free of charge, to any person obtaining a
    7 # copy of this software and associated documentation files (the "Software"),
    8 # to deal in the Software without restriction, including without limitation
    9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
   10 # and/or sell copies of the Software, and to permit persons to whom the
   11 # Software is furnished to do so, subject to the following conditions:
   12 # The above copyright notice and this permission notice shall be included in
   13 # all copies or substantial portions of the Software.
   14 #
   15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
   16 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   17 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
   18 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
   19 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
   20 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
   21 # DEALINGS IN THE SOFTWARE.
   22 #
   23 ##############################################################################
   24 
   25 AC_INIT(memtime.c)
   26 
   27 AC_CANONICAL_SYSTEM
   28 
   29 AC_PROG_CC
   30 AC_PROG_INSTALL
   31 
   32 AC_EXEEXT
   33 AC_OBJEXT
   34 
   35 AC_SUBST(MACHDEP)
   36 case "$target_os" in
   37 	linux*)
   38 		MACHDEP=linux.c
   39 		;;
   40 	solaris*)
   41 		MACHDEP=sunos5.c
   42 		;;
   43 	*)
   44 		AC_MSG_ERROR(This system is not yet supported by memtime)
   45 		;;
   46 esac
   47 
   48 AC_OUTPUT(Makefile)