The DCPSInfoRepo reassociates Built in Topic connections for existing
datareaders and datawriters when restarted from persistence.
- The opendds_idl compiler will now print a warning about not including
TAO’s orb.idl file when a file named orb.idl is included.
- Fixed a bug where the timeout for passive_connect_duration was
ignored.
- Fixed multiple bugs in fragmentation/reassembly used for udp and
multicast.
- Fixed multicast loopback and session re-use problems.
- Fixed a bug with memory management for the TransportCustomizedElement
used in publisher-side content filtering.
- New example Messenger.minimal – which is like messenger, but
streamlined for new users to understand the whole easier.
OpenDDS 3.0发布.
可以用配置 文件 配置传输层;
SimpleTCP 改名为tcp,增加了 Excel的Add-in。
OpenDDS 2.3于2011年2月18日发布。
(Stone Jiang 编译)
- OpenDDS 建模开发库 (SDK)首次在本版中发布。使用该建模工具,应用程序员可以像使用UML建模工具那样定义中间件组件的需求和数据结构,然后生成相应的代码。生成的代码可以直接编译和链接进应用程序从而对应用程序提供无缝支 持。这里用到的建模工具用到的图形编译器是基于Eclips实现的。
- 使用Built-in Topic (内置主题时),DCPSInfoRepo 不再使用-ORBSvcConf 参数。而DCPSInfoRepo会谨慎的加载SimpleTCP库(当其未被加载时)
- 支持for Microsoft Visual Studio 2010 (vc10).
Emacs 22 or 23 installation/upgrade possibility?
#5
Newbie
Joined: 2010/4/18
From
Posts: 6
1. Download the emacs-23.2.tar.gz package
a) open Konqueror
Konqueror &
b) navigate to http://ftp.gnu.org/pub/gnu/emacs
c) download emacs-23.2.tar.gz to the desired directory
d) untar the tarball by entering the following command:
tar xvf emacs-23.2.tar.gz
e) change directory to the new emacs-23.2 directory that was created by the untar
cd /FullPath/emacs-23.3
2. Update packages on RHEL or CentOS Linux
From a Konsole window enter the following commands:
yum -y groupinstall “Development Tools”
yum -y install gtk+-devel gtk2-devel
yum -y install libXpm-devel
yum -y install libpng-devel
yum -y install giflib-devel
yum -y install libtiff-devel libjpeg-devel
yum -y install ncurses-devel
yum -y install gpm-devel dbus-devel dbus-glib-devel dbus-python
yum -y install GConf2-devel pkgconfig
yum -y install libXft-devel
3. Build the emacs installation files
Within the emacs-23.2 directory enter the following commands at the Konsole:
./configure –prefix=/usr/local –with-x-toolkit=gtk
make
make install
Emacs 23.2 should now be installed.
Credit where it is due:
http://blog.penzilla.net/2010/07/emacs-on-centos-5.html
Let’s take a simple readline program
#include
#include
#include
int main() {
char *s;
s= readline(NULL);
printf(“characters read: %s\n”, s);
}
On compiling this program
$ gcc readInput.c
readline.c:2: fatal error: readline/readline.h: No such file or directory
compilation terminated.
If you come across this error, you must install readline dev package
$ sudo apt-get install libreadline6 libreadline6-dev
ACE+TAO+CIAO+DAnCE x.8.3 available for download
==============
Changes to ACE
==============
阅读全文…
新版本支持 Microsoft Visual Studio 2010 IDE (vc10)
不再支持 emulated C++ exceptions
解决了 Dev_Poll_Reactor带有用户空间的通知队列可能死锁的问题。
等等