1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

tt: begin to get it building under autotools

This commit is contained in:
Jon Trulson 2019-10-23 22:07:26 -06:00
parent db16ffd968
commit 03544e68ad
3 changed files with 15 additions and 2 deletions

View file

@ -185,7 +185,7 @@ dnl headers
AC_HEADER_STDC
dnl libraries
AC_CHECK_LIB(tirpc, main, [TIRPCINC=-I/usr/include/tirpc; TIRPCLIB=-ltirpc])
AC_CHECK_LIB(tirpc, main, [TIRPCINC="-DOPT_TIRPC -I/usr/include/tirpc"; TIRPCLIB=-ltirpc])
AC_SUBST(TIRPCINC)
AC_SUBST(TIRPCLIB)

View file

@ -1,6 +1,6 @@
MAINTAINERCLEANFILES = Makefile.in
include ../tooltalk.tmpl
include ../tooltalk.inc
noinst_LIBRARIES= libisam.a

13
cde/lib/tt/tooltalk.inc Normal file
View file

@ -0,0 +1,13 @@
# This file is imbedded near the top of every ToolTalk Imakefile.
# It contains definitions and redefinitions that are common to all
# of ToolTalk but which aren't referred to anywhere else in the
# build.
# It should match tooltalk.tmpl in terms of definitions...
# TT_VERSION defines the version string which is imbedded in all the
# binaries and shipped libraries.
TT_VERSION = "CDE Version 2.3.0a"
TT_VERSION_DEFINE = -DTT_VERSION_STRING=\"$(TT_VERSION)\"