From: Karel G. <kg...@us...> - 2002-03-23 20:17:22
|
Update of /cvsroot/micomt/mico/tools/iordump In directory usw-pr-cvs1:/tmp/cvs-serv31844/tools/iordump Modified Files: Makefile iordump.cc Log Message: - merged with MICO 2.3.7 Index: Makefile =================================================================== RCS file: /cvsroot/micomt/mico/tools/iordump/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Makefile 3 Nov 1999 23:20:54 -0000 1.1.1.1 --- Makefile 23 Mar 2002 20:17:16 -0000 1.2 *************** *** 1,5 **** # ! # MICO --- a free CORBA implementation ! # Copyright (C) 1997 Kay Roemer & Arno Puder # # This program is free software; you can redistribute it and/or modify --- 1,5 ---- # ! # MICO --- an Open Source CORBA implementation ! # Copyright (c) 1997-2002 by The Mico Team # # This program is free software; you can redistribute it and/or modify *************** *** 17,22 **** # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # ! # Send comments and/or bug reports to: ! # mi...@in... # --- 17,22 ---- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # ! # For more information, visit the MICO Home Page at ! # http://www.mico.org/ # *************** *** 25,29 **** CXXFLAGS := -I. -I../../include $(CXXFLAGS) $(EHFLAGS) LDFLAGS := -L../../orb $(LDFLAGS) ! LDLIBS = -lmico$(VERSION) $(CONFLIBS) # generated files --- 25,29 ---- CXXFLAGS := -I. -I../../include $(CXXFLAGS) $(EHFLAGS) LDFLAGS := -L../../orb $(LDFLAGS) ! LDLIBS = $(LDMICO) $(CONFLIBS) # generated files Index: iordump.cc =================================================================== RCS file: /cvsroot/micomt/mico/tools/iordump/iordump.cc,v retrieving revision 1.1.1.2 retrieving revision 1.2 diff -C2 -r1.1.1.2 -r1.2 *** iordump.cc 6 Jan 2001 23:18:25 -0000 1.1.1.2 --- iordump.cc 23 Mar 2002 20:17:16 -0000 1.2 *************** *** 2,6 **** --- 2,11 ---- #include <string.h> #include <mico/template_impl.h> + + #ifdef HAVE_ANSI_CPLUSPLUS_HEADERS + #include <iostream> + #else #include <iostream.h> + #endif void |