Commit c1d14222 authored by Steve Revill's avatar Steve Revill
Browse files

Build changes

Detail:
  Builds on 32-bit machine even with 26-bit environment.
  Fixed c.encoding so that it builds with newer tools.
Admin:
  Works in Baseline 500 build.

Version 0.53. Tagged as 'Unicode-0_53'
parent 37b69d9e
......@@ -31,10 +31,11 @@ UNICODELIBDIR = ${LIBDIR}.Unicode
#
# Generic options:
#
MKDIR = cdir
MKDIR = do mkdir -p
AS = objasm
CP = copy
CC = cc
CC_HOST = %cc
CM = cmhg
RM = remove
LD = link
......@@ -44,7 +45,7 @@ WIPE = -wipe
SQUEEZE = squeeze
STRIP = stripdepnd
CCFLAGS = -c -depend !Depend -fah -Ws ${INCLUDES} ${DFLAGS} ${THROWBACK}
CCFLAGS = -c -depend !Depend -fah ${INCLUDES} ${DFLAGS} ${THROWBACK}
ASFLAGS = -depend !Depend -Stamp -quit
CPFLAGS = ~cfr~v
LBFLAGS = -c
......@@ -226,8 +227,8 @@ unictype.c: mkunictype data.UnicodeData
mkunictype < data.UnicodeData > c.unictype
echo Made unictype.c
mkunictype: mkunictype.o ${CLIB}
${LD} -o $@ mkunictype.o ${CLIB}
mkunictype: mkunictype.c
${CC_HOST} mkunictype
TextConv: textconv.o ${TARGET}
${LD} -o $@ textconv.o ${TARGET} ${CLIB}
......
/* (0.52)
/* (0.53)
*
* This file is automatically maintained by srccommit, do not edit manually.
* Last processed by srccommit version: 1.68.
*
*/
#define Module_MajorVersion_CMHG 0.52
#define Module_MajorVersion_CMHG 0.53
#define Module_MinorVersion_CMHG
#define Module_Date_CMHG 05 Mar 2004
#define Module_Date_CMHG 01 Jul 2004
#define Module_MajorVersion "0.52"
#define Module_Version 52
#define Module_MajorVersion "0.53"
#define Module_Version 53
#define Module_MinorVersion ""
#define Module_Date "05 Mar 2004"
#define Module_Date "01 Jul 2004"
#define Module_ApplicationDate "05-Mar-04"
#define Module_ApplicationDate "01-Jul-04"
#define Module_ComponentName "Unicode"
#define Module_ComponentPath "RiscOS/Sources/Lib/Unicode"
#define Module_FullVersion "0.52"
#define Module_HelpVersion "0.52 (05 Mar 2004)"
#define Module_LibraryVersionInfo "0:52"
#define Module_FullVersion "0.53"
#define Module_HelpVersion "0.53 (01 Jul 2004)"
#define Module_LibraryVersionInfo "0:53"
......@@ -379,7 +379,7 @@ static void encoding_table_free(encoding_table t)
void encoding_initialise(void)
{
enc_table_list = NULL;
NOT_USED( version );
(void) version;
}
void encoding_tidyup(void)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment