- Improved centering in DIFRAC
- Fixed a bug in UserWait - Improved scan message in scancom - Added zero point correction in lin2ang - fixed an issue with uuencoded messages
This commit is contained in:
@@ -5,11 +5,11 @@
|
||||
#--------------------------------------------------------------------------
|
||||
OBJ= tecs_cli.o coc_client.o coc_util.o err_handling.o \
|
||||
str_util.o str_buf.o coc_server.o tecs_lsc.o tecs_serial.o \
|
||||
coc_logfile.o tecs_dlog.o
|
||||
coc_logfile.o tecs_dlog.o
|
||||
|
||||
#------------ for DigitalUnix
|
||||
CC=cc
|
||||
CFLAGS= -std1 -g -c -warnprotos -I. -I../hardsup
|
||||
CFLAGS= -std1 -g -c -warnprotos -I../ -I. -I../hardsup
|
||||
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) $*.c
|
||||
@@ -19,7 +19,7 @@ tecs: $(OBJ)
|
||||
ar cr libtecsl.a $(OBJ)
|
||||
ranlib libtecsl.a
|
||||
- rm TecsServer
|
||||
cc -o TecsServer -g tecs.c -lm -L. -ltecsl -L../hardsup -lhlib
|
||||
cc -o TecsServer -g -I../ tecs.c -lm -L. -ltecsl -L../hardsup -lhlib
|
||||
|
||||
clean:
|
||||
rm *.o
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <fortify.h>
|
||||
#include <sys/socket.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
#include <string.h>
|
||||
#include <stdarg.h>
|
||||
#include <assert.h>
|
||||
#include <fortify.h>
|
||||
#include "coc_logfile.h"
|
||||
#include "err_handling.h"
|
||||
#include "str_util.h"
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
#include "coc_logfile.h"
|
||||
#include "coc_server.h"
|
||||
#include "str_util.h"
|
||||
#include <fortify.h>
|
||||
|
||||
static Str_Buf *buf, *bufo;
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
#include <netdb.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <fortify.h>
|
||||
#include "err_handling.h"
|
||||
#include "str_util.h"
|
||||
#include "coc_util.h"
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <fortify.h>
|
||||
#include "err_handling.h"
|
||||
|
||||
#define SLEN 64
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
#include <stdlib.h>
|
||||
#include <fortify.h>
|
||||
#include "err_handling.h"
|
||||
#include "str_util.h"
|
||||
#include "str_buf.h"
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include <fortify.h>
|
||||
#include "err_handling.h"
|
||||
#include "str_util.h"
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
#include <sys/timeb.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include <fortify.h>
|
||||
#include "err_handling.h"
|
||||
#include "coc_server.h"
|
||||
#include "coc_logfile.h"
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <fortify.h>
|
||||
#include "err_handling.h"
|
||||
#include "str_util.h"
|
||||
#include "tecs_cli.h"
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <assert.h>
|
||||
#include <fortify.h>
|
||||
#include "err_handling.h"
|
||||
#include "str_util.h"
|
||||
#include "tecs_dlog.h"
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <fortify.h>
|
||||
#include "err_handling.h"
|
||||
#include "coc_logfile.h"
|
||||
#include "coc_util.h"
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <string.h>
|
||||
#include <fortify.h>
|
||||
#include "rs232c_def.h"
|
||||
#include "asynsrv_def.h"
|
||||
#include "sinq_prototypes.h"
|
||||
|
||||
Reference in New Issue
Block a user