Ok - so one of the steps in building CDE is an early phase called the includes phase (make includes). At this point, all of the public header files are exported to exports/include/Dt, DtI, ... Then, the software is built using that include dir. This of course does not work in autotools. Much of the software does things like #include <Dt/something.h>, so in order for the build to succeed, this behavior must be represented/replicated in some way. It seems the usual way of dealing with this is to place all public headers (and in some projects, ALL headers) into a toplevel include directory. We now do this for all public headers - they have been moved from wherever they were and placed in the appropriate spot in includes/ This will break the Imake 'make includes' phase unless the Imakefiles are fixed (remove the HEADERS = stuff, and the incdir defines). This has not been done at this point since in reality, once autotools works properly, there will be no need for the Imake stuff anymore, and I intend to get rid of it. This is just a warning for now - Imake builds in this tree will now fail at the 'includes' stage. This commit is only the migration. In upcoming commits, libtt will be fixed so that the hack being used before to get around this problem is removed as there will no longer be any need. And then the autotools work continues...
87 lines
2.8 KiB
C
87 lines
2.8 KiB
C
/*
|
|
* CDE - Common Desktop Environment
|
|
*
|
|
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
|
|
*
|
|
* These libraries and programs are free software; you can
|
|
* redistribute them and/or modify them under the terms of the GNU
|
|
* Lesser General Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* These libraries and programs are distributed in the hope that
|
|
* they will be useful, but WITHOUT ANY WARRANTY; without even the
|
|
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with these libraries and programs; if not, write
|
|
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
* Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
/*
|
|
* COMPONENT_NAME: austext
|
|
*
|
|
* FUNCTIONS: sizeof
|
|
*
|
|
* ORIGINS: 27,157
|
|
*
|
|
* (C) COPYRIGHT International Business Machines Corp. 1995, 1996
|
|
* All Rights Reserved
|
|
* US Government Users Restricted Rights - Use, duplication or
|
|
* disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
|
|
*/
|
|
/*----------------------------------------------------------------------------
|
|
$XConsortium: inittab.h /main/5 1996/11/25 18:48:42 drk $
|
|
inittab.h: db_VISTA header file containing:
|
|
|
|
- Compatible dictionary file versions
|
|
|
|
This file is intended to be included in inittab.c only. There are
|
|
multiple versions of inittab.c which share this header.
|
|
|
|
(An #include "vista.h" must precede this include)
|
|
|
|
(C) Copyright 1987 by Raima Corporation.
|
|
----------------------------------------------------------------------------*/
|
|
|
|
/* ********************** EDIT HISTORY *******************************
|
|
|
|
SCR DATE INI DESCRIPTION
|
|
----- --------- --- -----------------------------------------------------
|
|
101 21-Jun-88 RSC Added decl for rn_type and rn_dba for ONE_DB
|
|
08-Aug-88 RTK Moved rn_dba and rn_type to vista.h - needed in rec*.c
|
|
18-Aug-88 RSC Moved rn_type/dba to separate table, add curr_rn_table..
|
|
|
|
$Log$
|
|
* Revision 1.2 1995/10/13 18:36:46 miker
|
|
* Changed compat_dbd[] from hardcoded str to dbd_VERSION.
|
|
* (dbd_VERSION in vista.h changed bcs expanded max file name length.)
|
|
*
|
|
*/
|
|
|
|
|
|
int db_status = 0;
|
|
|
|
/* database dictionary tables */
|
|
INT largest_page = 0;
|
|
|
|
char *crloc = NULL;
|
|
|
|
INT old_size_ft = 0;
|
|
INT old_size_fd = 0;
|
|
INT old_size_st = 0;
|
|
INT old_size_mt = 0;
|
|
INT old_size_srt = 0;
|
|
INT old_size_kt = 0;
|
|
INT old_size_rt = 0;
|
|
INT old_no_of_dbs = 0;
|
|
|
|
/* Compatible dictionary versions */
|
|
char *compat_dbd[] = {
|
|
dbd_VERSION
|
|
};
|
|
int size_compat = sizeof(compat_dbd)/sizeof(*compat_dbd);
|
|
/* vpp -nOS2 -dUNIX -nBSD -nVANILLA_BSD -nVMS -nMEMLOCK -nWINDOWS -nFAR_ALLOC -f/usr/users/master/config/nonwin inittab.h */
|