source: server/common/oursrc/sqladm/configure.in @ 108

Last change on this file since 108 was 1, checked in by jbarnold, 18 years ago
File size: 427 bytes
Line 
1AC_INIT(signup-sql.c)
2
3AC_PROG_CC
4
5AC_ARG_WITH(sqluid,
6[  --with-sqluid[=UID]        sql user has uid UID ],[
7  if test "$withval" != "no" -a "$withval" != "yes"; then
8    CFLAGS="-D\"SQL_UID=$withval\" $CFLAGS"
9  fi
10])
11
12AC_ARG_WITH(sqlgid,
13[  --with-sqlgid[=UID]        sql user has gid GID ],[
14  if test "$withval" != "no" -a "$withval" != "yes"; then
15    CFLAGS="-D\"SQL_GID=$withval\" $CFLAGS"
16  fi
17])
18
19AC_OUTPUT(Makefile)
Note: See TracBrowser for help on using the repository browser.