[BACK]Return to make-configure CVS log [TXT][DIR] Up to [local] / OpenXM / src / oxc

Diff for /OpenXM/src/oxc/make-configure between version 1.1 and 1.2

version 1.1, 2000/10/13 06:05:11 version 1.2, 2016/09/23 05:37:43
Line 1 
Line 1 
 #!/bin/sh  #!/bin/sh
 # $OpenXM$  # $OpenXM: OpenXM/src/oxc/make-configure,v 1.1 2000/10/13 06:05:11 ohara Exp $
   
   case "$1" in
   "-d"|"--disable-shared")
 if [ ! -f ./.configure_done ]; then  if [ ! -f ./.configure_done ]; then
       if [ ! -f ./Makefile.in ]; then
                   automake
           fi
     if [ ! -x ./configure ]; then      if [ ! -x ./configure ]; then
                 autoconf                  autoconf
         fi          fi
       touch ${cache_file}
       ./configure --enable-shared=no
   fi
   ;;
   *)
   if [ ! -f ./.configure_done ]; then
       if [ ! -x ./configure ]; then
                   autoconf
           fi
     ./configure      ./configure
 fi  fi
   ;;
   esac
 touch .configure_done  touch .configure_done

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>