Ignore:
Timestamp:
Nov 28, 2006, 8:08:14 PM (17 years ago)
Author:
jbarnold
Message:
Improved package dependency tracking
Location:
server/common/oursrc/tokensys
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • server/common/oursrc/tokensys/Makefile.in

    r1 r36  
    22CFLAGS = @CFLAGS@
    33prefix = @prefix@
    4 
    5 preauto:
    6         rm -f configure config.* Makefile renew
    7         rm -rf auto*.cache
    8 
    9 ready: preauto
    10         autoconf
  • server/common/oursrc/tokensys/configure.in

    r10 r36  
    11AC_INIT()
    22
    3 AC_PATH_PROG(kinit_path, kinit)
     3AC_ARG_WITH(kinit,
     4[  --with-kinit[=PATH]       kinit is located at PATH],[
     5  if test "$withval" != "no" -a "$withval" != "yes"; then
     6    kinit_path="$withval"
     7  fi
     8])
    49AC_SUBST(kinit_path)
     10if test "$kinit_path" = ""; then
     11        AC_ERROR(Cannot find kinit)
     12fi
    513
    6 AC_PATH_PROG(aklog_path, aklog)
     14AC_ARG_WITH(aklog,
     15[  --with-aklog[=PATH]       aklog is located at PATH],[
     16  if test "$withval" != "no" -a "$withval" != "yes"; then
     17    aklog_path="$withval"
     18  fi
     19])
    720AC_SUBST(aklog_path)
     21if test "$aklog_path" = ""; then
     22        AC_ERROR(Cannot find aklog)
     23fi
    824
    925AC_OUTPUT(Makefile)
Note: See TracChangeset for help on using the changeset viewer.