]> andersk Git - moira.git/blame - util/imake.includes/config.Imakefile
sgi needs NEED_GETUSERSHELL
[moira.git] / util / imake.includes / config.Imakefile
CommitLineData
d97b9d80 1/**/# $Source$
d97b9d80 2/**/#
3
4/*
5 * Configuration options.
6 */
7
8/* GLOBAL_CDEFS are passed to every C compile statement */
2e24270b 9
10#ifdef _AIX
eba062ad 11OSDEFS= -D_BSD -D_BSD_INCLUDES -DPOSIX
12OSLIBS= -lbsd
2e24270b 13#endif
14
eba062ad 15#if defined(linux) || defined(__NetBSD__)
efeb47ac 16OSDEFS= -DPOSIX
17#endif
18
eba062ad 19#ifdef sgi
234fa8ee 20OSDEFS= -DPOSIX -DNEED_GETUSERSHELL
eba062ad 21#endif
22
2e24270b 23#if defined(SOLARIS)
be71418b 24OSDEFS= -DPOSIX -DSOLARIS
eba062ad 25OSLIBS= -lresolv -lsocket -lnsl
2e24270b 26#endif
27
28#ifdef NeXT
29OSLIBS= -lresolv
edd5054f 30#endif
d97b9d80 31
eba062ad 32#ifdef __alpha
33OSDEFS= -DSIXTYFOUR -DPOSIX
34#endif
2e24270b 35
eba062ad 36GLOBAL_CDEFS= -DHESIOD -DZEPHYR -DATHENA -DDBMS=ORACLE -I/usr/athena/include $(OSDEFS)
2e24270b 37
38
39/* SRCTOP is the root of the Moira source tree */
40SRCTOP=/mit/moiradev/src
d97b9d80 41
42/* DESTDIR is the root of the tree to install into.
43 * If null, install into the running system.
44 *
45 * DESTDIR='/' is guaranteed to cause trouble for systems which don't
46 * like double slashes in pathnames.
47 *
48 * All the installed programs and files are put into ${DESTDIR}/wherever, e.g.
49 * kinit would get installed into ${DESTDIR}${PROGDIR}/kuser
50 */
51
52DESTDIR=
53
54/*
55 * These directories should be subdirectories of DESTDIR;
56 * they show up as absolute pathnames here.
57 */
58/*
59 * Note: USRDIR should be the parent of most of these directories.
60 * If it is not, you may get errors when installing (the installation
61 * process attempts to create USRDIR, in order to assure that all the
62 * parents of these directories exist.
63 */
64USRDIR= /usr
2e24270b 65ETCDIR= /usr/athena/etc
66PROGDIR=/usr/athena/bin
d97b9d80 67LIBDIR= /usr/athena/lib
d97b9d80 68LINTLIBDIR = /usr/lib/lint
2e24270b 69INCLDIR= /usr/athena/include
70MANDIR= /usr/athena/man
71
d97b9d80 72
73/*
2e24270b 74 * Define SVRBUILD if this machine has your DBMS installed on it so
75 * that the server programs can be built which link against the DBMS
76 * libraries.
77 */
78/* #define SVRBUILD */
79
80/* Define USELOCALTOOLS if you already have built and installed in
81 * your environment the following tools:
82 imake
83 makedepend
84 */
85#define USELOCALTOOLS
86
87/* Define USELOCALLIBS if you already have built and installed in
88 * your environment the following libraries and associated tools:
2e24270b 89 com_err
d97b9d80 90 */
be71418b 91/* we want the newer versions from our source tree */
92/* #define USELOCALLIBS */
d97b9d80 93
94/*
2e24270b 95 * Define HESIOD if you have hesiod installed on your system and want
96 * to use it for the Moira clients to find the Moira server.
d97b9d80 97 */
2e24270b 98#define HESIOD
d97b9d80 99
100/*
2e24270b 101 * Define ZEPHYR if you have zephyr installed on your system and want
102 * to use it to report Moira server errors. Also define the library
103 * to link against.
d97b9d80 104 */
2e24270b 105#define ZEPHYR
9f662e18 106LZEPHYR=-lzephyr
d97b9d80 107
108/*
2e24270b 109 * Define GDSS if you use the Generic Data Signature Service to
110 * stamp user records to guarentee their authenticity. Also define
111 * location of library and includes.
d97b9d80 112 */
2e24270b 113#define GDSS
b84717e4 114#define DO_GDSS
82302b7a 115LIBGDSS= $(BUILDTOP)/util/gdss/lib/libgdss.a
116GDSSINC= -DGDSS -I$(BUILDTOP)/util/gdss/include
d97b9d80 117
118/*
99826b0e 119 * Define your DBMS here. Currently only ORACLE is supported.
d97b9d80 120 */
99826b0e 121#define ORACLE
d97b9d80 122
123/*
2e24270b 124 * Define NEED_STRCASECMP if you don't have strcasecmp() in your libc.
125 * (likely for older 4.3 systems and pre-4.3 systems)
d97b9d80 126 */
2e24270b 127/* #define NEED_STRCASECMP */
d97b9d80 128
2e24270b 129MR_LIB=$(BUILDTOP)/lib/libmoira.a
130MR_LIBDEP=$(MR_LIB)
2e24270b 131GDB_LIB=$(BUILDTOP)/gdb/libmrgdb.a
132GDB_LIBDEP=$(GDB_LIB)
2e24270b 133
134
d97b9d80 135/*
136 * The name of a command which compiles error tables.
137 */
2e24270b 138#ifdef USELOCALLIBS
139COMPILE_ET= compile_et
140#else
d97b9d80 141COMPILE_ET= $(BUILDTOP)/util/et/compile_et
2e24270b 142#endif
d97b9d80 143/*
144 * Loader argument to get the com_err library
145 */
2e24270b 146#ifdef USELOCALLIBS
147COM_ERR = -lcom_err
148#else
d97b9d80 149COM_ERR = $(BUILDTOP)/util/et/libcom_err.a
2e24270b 150#endif
d97b9d80 151/*
152 * Dependency name for COM_ERR, if any
153 */
2e24270b 154#ifndef USELOCALLIBS
d97b9d80 155COM_ERR_DEP = $(COM_ERR)
eba062ad 156COM_ERR_INC = -I$(BUILDTOP)/util/et/
2e24270b 157#endif
d97b9d80 158
2e24270b 159LLIB = -L/usr/athena/lib
160
161/* libraries most Moira programs use */
162#ifdef HESIOD
163CLIBS= $(MR_LIB) $(GDB_LIB) $(LLIB) $(LZEPHYR) $(COM_ERR) -lkrb -ldes -lhesiod
164#else
165CLIBS= $(MR_LIB) $(GDB_LIB) $(LLIB) $(LZEPHYR) $(COM_ERR) -lkrb -ldes
166#endif
167
168/* libraries SQL programs need */
2e24270b 169#ifdef ORACLE
99826b0e 170SQL_LIB= -L/usr/oracle/lib -lsql /usr/oracle/lib/osntab.o -lsqlnet -lora -lsqlnet -lora -lnlsrtl -lcv6 -lcore -lnlsrtl -lcv6 -lcore -lsocket -lnsl -lm -lm -ldl -laio
2e24270b 171#endif
d97b9d80 172
eba062ad 173/* optional readline support for mrtest */
174READLINE_INCLUDES= -I/mit/gnu/include/readline -DUSE_READLINE
175READLINE_LIBS= -L/mit/gnu/lib -lreadline -ltermcap
2e24270b 176
177/* Define NEED_STRCASECMP if your C library doesn't have the BSD-style
178 * case insensitive string compare strcasecmp().
179 */
180#ifdef _AIX
181#define NEED_STRCASECMP
182#endif
183
184/* HAS_VSPRINTF should be defined if this function is in your C library */
eba062ad 185#if !defined(ultrix) && (!defined(sun) || defined(SOLARIS))
2e24270b 186#define HAS_VSPRINTF
eba062ad 187#endif
188
189/* Curses library */
190#ifdef SOLARIS
191CURSES= -L/usr/css/lib -lcurses -ltermcap
192#elif linux
193CURSES= -lncurses -ltermcap
194OSINCLUDES= -I/usr/include/ncurses
195#elif _AIX
196CURSES= -lcurses
2e24270b 197#else
eba062ad 198CURSES= -lcurses -ltermcap
2e24270b 199#endif
d97b9d80 200
eba062ad 201/* X and motif (for mmoira client) */
202#ifdef SOLARIS
203XDIR= /usr/openwin
204#else
205XDIR= /usr/X11
206#endif
d97b9d80 207
eba062ad 208#if !(defined(linux) || defined(__NetBSD__))
209MOTIFINC= /mit/motif/include
210MOTIFLIB= /mit/motif/`machtype`lib
211#endif
d97b9d80 212
98a7b0ee 213/* where crypt is, if not libc and unistd.h */
eba062ad 214#ifdef __NetBSD__
215CRYPT= -lcrypt
216#endif
98a7b0ee 217#if defined(sgi) || defined(SOLARIS)
218#define USE_CRYPT_H
219#endif
220
2e24270b 221
d97b9d80 222/*
223 * The name of a command which builds an object library.
224 */
225ARCHIVE= ar cru
eba062ad 226
d97b9d80 227/*
228 * The name of another program needed to post-process the archive.
229 */
efeb47ac 230#if defined(SOLARIS) || defined(sgi)
2e24270b 231RANLIB= /bin/true
232#else
d97b9d80 233RANLIB= ranlib
2e24270b 234#endif
d97b9d80 235
236
237/*
238 * Install commands: installs a file into the destination tree.
239 * These commands are called with two arguments: the source and the
240 * destination of the install.
241 */
242/* install a file */
243INSTALLFILE= install -c -m 444
244/* install a library */
245INSTALLLIB= install -c -m 444
246/* install a program */
247INSTALLPROG= install -c -m 555
248/* invoke raw install program */
249INSTALLRAW= install
d97b9d80 250
251LD=ld /* The name of the target's linker */
252
2e24270b 253#ifdef SOLARIS
8e023d2a 254CC=gcc
2e24270b 255#else
256#ifdef _AIX
257#ifdef i386
258CC=cc -q -D_BSD -DBSD_INCLUDES
259#else /* i386 */
260CC=cc -D_BSD -D_BSD_INCLUDES /* Use BSD style header files & be quiet */
261#endif /* i386 */
262#else /* _AIX */
d97b9d80 263CC=cc /* The name of the C compiler for the target */
2e24270b 264#endif /* _AIX */
265#endif /* SOLARIS */
d97b9d80 266
d97b9d80 267CPP=$(CC) -E /* A command which invokes the C preprocessor */
268
da6b2d4a 269#ifndef _AIX /* RS6K optomizer is buggy, we don't know if it wall affect moira */
d1033200 270DBG=-g /* Debug or optimize? */
da6b2d4a 271#endif /* _AIX */
d97b9d80 272
efeb47ac 273SHELL=/bin/sh /* shell to use from make */
d97b9d80 274MAKE=make /* name of make program */
275RM=rm -f /* delete one or more files/directories/links */
276MV=mv /* rename/move a file */
277CP=cp /* copy a file */
278LN=ln -s /* create a link */
279LPR=lpr -p /* print a file or files */
280CHMOD=chmod /* change mode of a file */
2e24270b 281AWK=awk /* used to filter embeded SQL files */
This page took 0.110367 seconds and 5 git commands to generate.