source: server/common/oursrc/execsys/configure.in @ 89

Last change on this file since 89 was 87, checked in by tabbott, 17 years ago
Makefile.in changes to make things more portable. Added install, clean, distclean targets so that one can easily build and install on non-Fedora systems, and removed unecessary targets (those that are already default make rules).
File size: 540 bytes
Line 
1AC_INIT(staticsys-cat.c.pre)
2
3AC_PROG_CC
4
5AC_ARG_WITH(afsagent,
6[  --with-afsagent[=UID]        afsagent will have user id UID],[
7  if test "$withval" != "no" -a "$withval" != "yes"; then
8    CFLAGS="-DAFSAGENT_UID=$withval $CCFLAGS"
9  fi
10])
11
12AC_DEFUN(SUPPORT,[AC_ARG_WITH($1,
13[  --with-$1[=PATH]$2       associate .$1 with PATH],[
14  if test "$withval" != "no" -a "$withval" != "yes"; then
15    UPD_VARS="$1_path=$withval $UPD_VARS"
16  fi
17])])
18
19SUPPORT([pl], [ ])
20SUPPORT([php], [])
21SUPPORT([py], [ ])
22
23AC_SUBST(UPD_VARS)
24AC_OUTPUT(Makefile)
Note: See TracBrowser for help on using the repository browser.