3217a68323149cc474991227aa37e5d4adf73b97
[oweals/cde.git] / cde / configure.ac
1 AC_INIT([cde-desktop], [2.3.1], [jon@radscan.com])
2 AC_CONFIG_HEADERS([include/autotools_config.h])
3 AC_CONFIG_MACRO_DIRS([m4])
4 AM_INIT_AUTOMAKE([foreign subdir-objects])
5 LT_INIT
6 AC_PREFIX_DEFAULT(/usr/dt)
7
8 AC_ENABLE_STATIC([no])
9
10 PKG_PROG_PKG_CONFIG
11
12 dnl todo: determine what version of autoconf we depend on
13 dnl AC_PREREQ()
14
15 AC_CANONICAL_HOST
16 AC_CANONICAL_BUILD
17
18 dnl global CDE versioning
19
20 CDE_VERSION_MAJOR=2
21 CDE_VERSION_MINOR=3
22 CDE_VERSION_MICRO=0
23
24 AC_SUBST(CDE_VERSION_MAJOR)
25 AC_SUBST(CDE_VERSION_MINOR)
26 AC_SUBST(CDE_VERSION_MICRO)
27
28 dnl SOURCE_DEFINES - start with CDE project default
29 SOURCE_CPP_DEFINES="-DANSICPP -DMULTIBYTE -DNLS16"
30
31 dnl CPP_COMPILER_FLAGS - CPP/C/C++ compiler flags
32 CPP_COMPILER_FLAGS=""
33
34 dnl CXX_COMPILER_FLAGS - C++ compiler flags
35 CXX_COMPILER_FLAGS=""
36
37 dnl C_COMPILER_FLAGS - C compiler flags
38 C_COMPILER_FLAGS=""
39
40
41 dnl These OS version checks are deprecated and should be replaced with
42 dnl feature checks where appropriate
43
44 build_linux=no
45 bsd=no
46 build_freebsd=no
47 build_openbsd=no
48 build_netbsd=no
49 build_solaris=no
50 build_hpux=no
51 build_aix=no
52
53 dnl For now, we need to fake the OSMAJORVERSION, OSMINORVERSION.  In Linux
54 dnl this never mattered anyway as it was always the kernel version.  We will
55 dnl choose defaults here.  These need to be removed in the code in favor
56 dnl of actual checks for functionality. So this should be considered
57 dnl temporary.
58
59 OSMAJORVERSION=4
60 OSMINORVERSION=15
61
62 case "${host_os}" in
63         linux*)
64                 build_linux=yes
65                 OSMAJORVERSION=4
66                 OSMINORVERSION=15
67                 SOURCE_CPP_DEFINES="${SOURCE_CPP_DEFINES} -D_POSIX_SOURCE \
68 -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_SVID_SOURCE"
69                 CPP_COMPILER_FLAGS="-fno-strict-aliasing -Wno-write-strings \
70 -Wno-unused-result"
71                  ;;
72         freebsd*)
73                 build_freebsd=yes
74                 bsd=yes
75                 OSMAJORVERSION=10
76                 OSMINORVERSION=0
77                 ;;
78         openbsd*)
79                 build_openbsd=yes
80                 bsd=yes
81                 OSMAJORVERSION=6
82                 OSMINORVERSION=2
83                 ;;
84         netbsd*)
85                 build_netbsd=yes
86                 bsd=yes
87                 OSMAJORVERSION=8
88                 OSMINORVERSION=0
89                 ;;
90         solaris*|sun*)
91                 build_solaris=yes
92                 OSMAJORVERSION=5
93                 OSMINORVERSION=10
94                 ;;
95         aix*)
96                 build_aix=yes
97                 ;;
98         hpux*)
99                 build_hpux=yes
100                 ;;
101 esac
102
103 AM_CONDITIONAL([LINUX], [test "$build_linux" = "yes"])
104 AM_CONDITIONAL([BSD], [test "$build_bsd" = "yes"])
105 AM_CONDITIONAL([FREEBSD], [test "$build_freebsd" = "yes"])
106 AM_CONDITIONAL([OPENBSD], [test "$build_openbsd" = "yes"])
107 AM_CONDITIONAL([NETBSD], [test "$build_netbsd" = "yes"])
108 AM_CONDITIONAL([SOLARIS], [test "$build_solaris" = "yes"])
109 AM_CONDITIONAL([AIX], [test "$build_aix" = "yes"])
110 AM_CONDITIONAL([HPUX], [test "$build_hpux" = "yes"])
111
112 dnl Add osmajor/minor version to cppflags.
113 OSVERSION="-DOSMAJORVERSION=$OSMAJORVERSION -DOSMINORVERSION=$OSMINORVERSION"
114
115 dnl set CSRG_BASED define for the BSD's
116 if test "$build_bsd" = "yes"
117 then
118         SOURCE_CPP_DEFINES="${SOURCE_CPP_DEFINES} -DCSRG_BASED"
119 fi
120
121 is_x86_64=no
122 is_i386=no
123 is_sparc=no
124 is_mips=no
125 is_arm=no
126 is_ppc=no
127
128 case "${host_cpu}" in
129         i[3456]86*)
130                 is_i386=yes
131                 ;;
132         x86_64* | amd64*)
133                 is_x86_64=yes
134                 ;;
135         arm*)
136                 is_arm=yes
137                 ;;
138         mips*)
139                 is_mips=yes
140                 ;;
141         sparc*)
142                 is_sparc=yes
143                 ;;
144         ppc* | powerpc*)
145                 is_ppc=yes
146                 ;;
147 esac
148
149 AM_CONDITIONAL([I386], [test "$is_i386" = yes])
150 AM_CONDITIONAL([X86_64], [test "$is_x86_64" = yes])
151 AM_CONDITIONAL([ARM], [test "$is_arm" = yes])
152 AM_CONDITIONAL([SPARC], [test "$is_sparc" = yes])
153 AM_CONDITIONAL([MIPS], [test "is_mips" = yes])
154 AM_CONDITIONAL([PPC], [test "is_ppc" = yes])
155
156 dnl our main libraries
157 dnl we use single quotes so that $top_buildir is evaluated in the makefiles,
158 dnl not here.
159 AC_SUBST(LIBTT, '$(top_builddir)/lib/tt/lib/libtt.la')
160 AC_SUBST(LIBXIN, '$(top_builddir)/lib/DtXinerama/libDtXinerama.la')
161 AC_SUBST(LIBWIDGET, '$(top_builddir)/lib/DtWidget/libDtWidget.la')
162 AC_SUBST(LIBTERM, '$(top_builddir)/lib/DtTerm/libDtTerm.la')
163 AC_SUBST(LIBSVC, '$(top_builddir)/lib/DtSvc/libDtSvc.la')
164 AC_SUBST(LIBSEARCH, '$(top_builddir)/lib/DtSearch/lbiDtSearch.la')
165 AC_SUBST(LIBPRINT, '$(top_builddir)/lib/DtPrint/libDtPrint.la')
166 AC_SUBST(LIBMRM, '$(top_builddir)/lib/DtMrm/libDtMrm.la')
167 AC_SUBST(LIBMMDB, '$(top_builddir)/lib/DtMmdb/libDtMmdb.la')
168 AC_SUBST(LIBHELP, '$(top_builddir)/lib/DtHelp/libDtHelp.la')
169 AC_SUBST(LIBCSA, '$(top_builddir)/lib/csa/libcsa.la')
170
171 AC_SUBST(DTCLIENTLIBS, '$(LIBPRINT) $(LIBHELP) $(LIBWIDGET) $(LIBSVC) \
172 $(LIBTT) $(LIBXIN)')
173
174 dnl set up come convenience replacements for global include dirs
175 AC_SUBST(DT_INCDIR, '-I$(top_builddir)/include/Dt')
176 AC_SUBST(DTI_INCDIR, '-I$(top_builddir)/include/DtI')
177 AC_SUBST(TT_INCDIR, '-I$(top_builddir)/include/Tt')
178 AC_SUBST(XM_INCDIR, '-I$(top_builddir)/include/Xm')
179 AC_SUBST(CSA_INCDIR, '-I$(top_builddir)/include/csa')
180 AC_SUBST(SPC_INCDIR, '-I$(top_builddir)/include/SPC')
181
182 AC_ARG_ENABLE(japanese, [--build-japanese    Build Japanese (default=no)])
183 AM_CONDITIONAL([JAPANESE], [test "build_japanese" = "yes"])
184
185 AC_ARG_ENABLE(german, [--build-german    Build German    (default=no)])
186 AM_CONDITIONAL([GERMAN], [test "build_german" = "yes"])
187
188 AC_ARG_ENABLE(italian, [--build-italian    Build Italian    (default=no)])
189 AM_CONDITIONAL([ITALIAN], [test "build_italian" = "yes"])
190
191 AC_ARG_ENABLE(french, [--build-french    Build French    (default=no)])
192 AM_CONDITIONAL([FRENCH], [test "build_french" = "yes"])
193
194 AC_ARG_ENABLE(spanish, --build-spanish    Build Spanish    (default=no)])
195 AM_CONDITIONAL([SPANISH], [test "build_spanish" = "yes"])
196
197 dnl hmmm...
198 RM="rm -f"
199 AC_SUBST(RM)
200 CP="cp -f"
201 AC_SUBST(CP)
202
203 dnl these should be configurable someday...
204 CDE_INSTALLATION_TOP="$ac_default_prefix"
205 CDE_LOGFILES_TOP=/var/dt
206 CDE_CONFIGURATION_TOP=/etc/dt
207 CDE_USER_TOP=.dt
208
209 AC_SUBST(CDE_INSTALLATION_TOP)
210 AC_SUBST(CDE_CONFIGURATION_TOP)
211 AC_SUBST(CDE_LOGFILES_TOP)
212 AC_SUBST(CDE_USER_TOP)
213
214 AC_PROG_CC
215 AC_PROG_CXX
216
217 AC_PROG_CPP
218
219 dnl we need a real preprocessor, not gcc -E.  We will call it GENCPP.  We will
220 dnl go with BSD's tradcpp here...
221 AC_SUBST(GENCPP, '$(top_builddir)/util/tradcpp/tradcpp')
222
223 AM_PROG_LIBTOOL
224 AC_PROG_YACC
225 AM_PROG_LEX
226 AC_PROG_INSTALL
227 AC_PROG_LN_S
228 AC_PROG_MAKE_SET
229 AC_PROG_SED
230 AC_PROG_AWK
231 AC_PROG_GREP
232
233 dnl AC_PROG_AR
234 AC_PROG_RANLIB
235
236 AC_C_CONST
237 AC_C_BIGENDIAN
238 AC_C_INLINE
239 AC_C_CHAR_UNSIGNED
240 AC_C_STRINGIZE
241 AC_C_FLEXIBLE_ARRAY_MEMBER
242 AC_SYS_POSIX_TERMIOS
243
244 AX_PTHREAD
245
246 AC_PROG_CC_C99
247
248 AC_PATH_X
249 AC_PATH_XTRA
250
251 AC_FUNC_FORK
252
253 dnl programs with full paths
254
255 AC_PATH_PROG(KSH, ksh)
256 AC_PATH_PROG(XRDB, xrdb)
257
258 dnl programs
259 AC_CHECK_PROGS(BDFTOPCF, bdftopcf)
260 AC_CHECK_PROGS(MKFONTDIR, mkfontdir)
261 AC_CHECK_PROGS(GZIP, gzip)
262 AC_CHECK_PROGS(M4, m4)
263 AC_CHECK_PROGS(RPCGEN, rpcgen)
264
265 dnl headers
266 AC_HEADER_STDC
267 AC_CHECK_HEADERS([locale.h])
268
269 dnl libraries
270 AC_CHECK_LIB(m, cosf)
271 AC_CHECK_LIB(crypt, crypt)
272 dnl this should be configurable, for now it is required
273 AC_CHECK_LIB(Xinerama, XineramaQueryScreens,
274                 [SOURCE_CPP_DEFINES="${SOURCE_CPP_DEFINES} -DUSE_XINERAMA"],
275                 [AC_MSG_ERROR([libXinerama not found])])
276
277 dnl Special check for tirpc...
278 AC_CHECK_LIB(tirpc, svc_register,
279       [CFLAGS="${CFLAGS} -DOPT_TIRPC -I/usr/include/tirpc";
280        CXXFLAGS="${CXXFLAGS} -DOPT_TIRPC -I/usr/include/tirpc";
281        TIRPCLIB=-ltirpc])
282 AC_SUBST(TIRPCLIB)
283
284 dnl Setup XTOOLLIB - we do it in this specific order to avoid ordering
285 dnl issues
286 XTOOLLIB="$X_LIBS"
287 AC_CHECK_LIB(X11, XOpenDisplay, [XTOOLLIB="-lX11"])
288 AC_CHECK_LIB(Xau, XauReadAuth, [XTOOLLIB="-lXau ${XTOOLLIB}"])
289 AC_CHECK_LIB(Xt, XtInitialize, [XTOOLLIB="-lXt ${XTOOLLIB}"])
290 AC_CHECK_LIB(ICE, IceCloseConnection, [XTOOLLIB="-lICE ${XTOOLLIB}"])
291 AC_CHECK_LIB(SM, SmcOpenConnection, [XTOOLLIB="-lSM ${XTOOLLIB}"])
292 AC_CHECK_LIB(Xm, XmTextSetString, [XTOOLLIB="-lXm ${XTOOLLIB}"])
293 AC_SUBST([XTOOLLIB])
294
295 dnl set CPPFLAGS, CFLAGS, and CXXFLAGS.
296 dnl The Autoconf manual says that these are user variables and
297 dnl shouldn't be modified.  It suggests that you create a special
298 dnl variable and presumably add those to your Makefile.am files.  We
299 dnl have 192 of these currently, so... The user will just have to
300 dnl deal, or modify them here directly.
301 CPPFLAGS="${CPPFLAGS} ${SOURCE_CPP_DEFINES} ${CPP_COMPILER_FLAGS} ${OSVERSION}"
302 CFLAGS="${CFLAGS} ${C_COMPILER_FLAGS} ${PTHREAD_CFLAGS}"
303 CXXFLAGS="${CXXFLAGS} ${CXX_COMPILER_FLAGS} ${PTHREAD_CFLAGS}"
304 LIBS="${LIBS} ${PTHREAD_LIBS}"
305
306 dnl All of the makefiles we need to generate go here...
307 AC_CONFIG_FILES([
308 Makefile
309
310 util/Makefile
311 util/tradcpp/Makefile
312
313 lib/Makefile
314
315 lib/DtXinerama/Makefile
316
317 lib/tt/Makefile
318 lib/tt/mini_isam/Makefile
319 lib/tt/slib/Makefile
320 lib/tt/lib/Makefile
321 lib/tt/lib/api/Makefile
322 lib/tt/lib/api/dnd/Makefile
323 lib/tt/lib/api/c/Makefile
324 lib/tt/lib/tttk/Makefile
325 lib/tt/lib/db/Makefile
326 lib/tt/lib/mp/Makefile
327 lib/tt/lib/util/Makefile
328 lib/tt/bin/Makefile
329 lib/tt/bin/shell/Makefile
330 lib/tt/bin/ttauth/Makefile
331 lib/tt/bin/scripts/Makefile
332 lib/tt/bin/tttar/Makefile
333 lib/tt/bin/tt_type_comp/Makefile
334 lib/tt/bin/tttrace/Makefile
335 lib/tt/bin/dbck/Makefile
336 lib/tt/bin/ttdbserverd/Makefile
337 lib/tt/bin/ttsession/Makefile
338
339 lib/DtSvc/Makefile
340
341 lib/DtSearch/Makefile
342 lib/DtSearch/raima/Makefile
343
344 lib/DtWidget/Makefile
345
346 lib/DtHelp/Makefile
347 lib/DtHelp/il/Makefile
348
349 lib/DtPrint/Makefile
350
351 lib/DtTerm/Term/Makefile
352 lib/DtTerm/Makefile
353 lib/DtTerm/TermView/Makefile
354 lib/DtTerm/util/Makefile
355 lib/DtTerm/TermPrim/Makefile
356
357 lib/DtMrm/Makefile
358
359 lib/csa/Makefile
360
361 programs/Makefile
362
363 programs/backdrops/Makefile
364
365 programs/icons/Makefile
366
367 programs/dthelp/Makefile
368 programs/dthelp/dthelpgen/Makefile
369 programs/dthelp/dthelpprint/Makefile
370 programs/dthelp/parser/pass1/helptag/Makefile
371 programs/dthelp/parser/pass1/Makefile
372 programs/dthelp/parser/pass1/eltdef/Makefile
373 programs/dthelp/parser/pass1/build/Makefile
374 programs/dthelp/parser/Makefile
375 programs/dthelp/parser/canon1/Makefile
376 programs/dthelp/parser/pass2/Makefile
377 programs/dthelp/dthelpview/Makefile
378
379 programs/dsdm/Makefile
380
381 programs/dtmail/Makefile
382 programs/dtmail/dtmail/Makefile
383 programs/dtmail/MotifApp/Makefile
384 programs/dtmail/dtmailpr/Makefile
385 programs/dtmail/libDtMail/Makefile
386 programs/dtmail/libDtMail/RFC/Makefile
387 programs/dtmail/libDtMail/Common/Makefile
388
389 programs/dtpad/Makefile
390
391 programs/dtfile/Makefile
392 programs/dtfile/dtcopy/Makefile
393
394 programs/dtwm/Makefile
395
396 programs/dtlogin/Makefile
397 programs/dtlogin/config/Makefile
398
399 programs/dtsession/Makefile
400
401 programs/dthello/Makefile
402
403 programs/dtstyle/Makefile
404
405 programs/dtexec/Makefile
406
407 programs/dtdbcache/Makefile
408
409 programs/dticon/Makefile
410
411 programs/dtterm/Makefile
412
413 programs/dtcalc/Makefile
414
415 programs/dtaction/Makefile
416
417 programs/dtspcd/Makefile
418
419 programs/dtscreen/Makefile
420
421 programs/dtcm/Makefile
422 programs/dtcm/libDtCmP/Makefile
423 programs/dtcm/server/Makefile
424 programs/dtcm/dtcm/Makefile
425
426 programs/dtsearchpath/Makefile
427 programs/dtsearchpath/libCliSrv/Makefile
428 programs/dtsearchpath/dtsp/Makefile
429 programs/dtsearchpath/dtappg/Makefile
430
431 programs/dtappintegrate/Makefile
432
433 programs/dtprintegrate/Makefile
434
435 programs/dtconfig/Makefile
436 programs/dtconfig/sun/Makefile
437
438 programs/dtcreate/Makefile
439
440 programs/dtprintinfo/Makefile
441
442 programs/fontaliases/Makefile
443 programs/fontaliases/bdf/Makefile
444 programs/fontaliases/linux/Makefile
445 programs/fontaliases/linux/C/Makefile
446 programs/fontaliases/linux/en_US.UTF-8/Makefile
447 programs/fontaliases/sun/Makefile
448 programs/fontaliases/sun/C/Makefile
449 programs/fontaliases/netbsd/Makefile
450 programs/fontaliases/netbsd/C/Makefile
451 programs/fontaliases/openbsd/Makefile
452 programs/fontaliases/openbsd/C/Makefile
453 programs/fontaliases/freebsd/Makefile
454 programs/fontaliases/freebsd/C/Makefile
455
456 programs/dtdspmsg/Makefile
457
458 programs/dtimsstart/Makefile
459
460 programs/dtpdm/Makefile
461
462 programs/dtsr/Makefile
463
464 programs/dtpdmd/Makefile
465
466 programs/types/Makefile
467
468 programs/tttypes/Makefile
469
470 programs/util/Makefile
471 programs/util/dttypes/Makefile
472
473 programs/dtopen/Makefile
474
475 programs/localized/Makefile
476 programs/localized/util/Makefile
477 programs/localized/C/Makefile
478 programs/localized/C/app-defaults/Makefile
479 programs/localized/C/config/Makefile
480 programs/localized/de_DE.UTF-8/Makefile
481 programs/localized/de_DE.UTF-8/app-defaults/Makefile
482 programs/localized/de_DE.UTF-8/config/Makefile
483 programs/localized/fr_FR.UTF-8/Makefile
484 programs/localized/fr_FR.UTF-8/app-defaults/Makefile
485 programs/localized/fr_FR.UTF-8/config/Makefile
486 programs/localized/it_IT.UTF-8/Makefile
487 programs/localized/it_IT.UTF-8/app-defaults/Makefile
488 programs/localized/it_IT.UTF-8/config/Makefile
489 programs/localized/es_ES.UTF-8/Makefile
490 programs/localized/es_ES.UTF-8/app-defaults/Makefile
491 programs/localized/es_ES.UTF-8/config/Makefile
492
493 ])
494
495 AC_OUTPUT
496