From e9a86c7e260c9fa0dc2be8446bd244c47662395d Mon Sep 17 00:00:00 2001 From: Jim Kowalkowski Date: Tue, 25 Jun 1996 19:18:12 +0000 Subject: [PATCH] moved from extensions to base - fixed trouble in dbMapper.cc --- src/gdd/Makefile | 5 ++++- src/gdd/Makefile.Unix | 5 ++++- src/gdd/dbMapper.cc | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/gdd/Makefile b/src/gdd/Makefile index cf41ec043..ccded8be6 100644 --- a/src/gdd/Makefile +++ b/src/gdd/Makefile @@ -5,6 +5,9 @@ # $Id$ # # $Log$ +# Revision 1.1 1996/06/25 19:11:24 jbk +# new in EPICS base +# # # *Revision 1.2 1996/06/25 18:58:55 jbk # *more fixes for the aitString management functions and mapping menus @@ -16,7 +19,7 @@ EPICS=../../.. # EPICS=/usr/local/epics/R3.12.2 -include $(EPICS)/config/CONFIG_EXTENSIONS +include $(EPICS)/config/CONFIG_BASE include $(EPICS)/config/RULES_ARCHS diff --git a/src/gdd/Makefile.Unix b/src/gdd/Makefile.Unix index 269923239..f14695b81 100644 --- a/src/gdd/Makefile.Unix +++ b/src/gdd/Makefile.Unix @@ -5,6 +5,9 @@ # $Id$ # # $Log$ +# Revision 1.1 1996/06/25 19:11:25 jbk +# new in EPICS base +# # # *Revision 1.4 1996/06/25 18:58:56 jbk # *more fixes for the aitString management functions and mapping menus @@ -21,7 +24,7 @@ EPICS = ../../../.. # EPICS = /usr/local/epics/R3.12.2 include Target.include -include $(EPICS)/config/CONFIG_EXTENSIONS +include $(EPICS)/config/CONFIG_BASE OPTIM_YES=-g ifeq ($(HOST_ARCH),sun4) diff --git a/src/gdd/dbMapper.cc b/src/gdd/dbMapper.cc index 469844d12..ec7d730e6 100644 --- a/src/gdd/dbMapper.cc +++ b/src/gdd/dbMapper.cc @@ -4,6 +4,9 @@ // $Id$ // // $Log$ +// Revision 1.1 1996/06/25 19:11:34 jbk +// new in EPICS base +// // // *Revision 1.5 1996/06/25 18:59:00 jbk @@ -206,7 +209,7 @@ static int mapGddToEnum(void* v, gdd* dd) { if(dd->dimension()) { dd->getRef(e); - sv=*e; + *sv=*e; } else *sv=*dd; return sz;