debian/0000775000000000000000000000000012224750336007174 5ustar debian/libace-doc.doc-base.reference0000664000000000000000000000053212224735441014512 0ustar Document: libace-reference Title: ACE online documentation Author: Douglas C. Schmidt and his research group Abstract: This set of documents provides help for developing applications using the ACE, TAO and CIAO libraries. Section: Programming/C++ Format: html Index: /usr/share/doc/libace-doc/index.html Files: /usr/share/doc/libace-doc/*.html debian/libacexml-6.0.3.install0000664000000000000000000000014012224747277013173 0ustar usr/lib/libACEXML_XML_Svc_Conf_Parser-*.so usr/lib/libACEXML-*.so usr/lib/libACEXML_Parser-*.so debian/config-hurd.h0000664000000000000000000001450012224735512011551 0ustar // The following configuration file is designed to work for GNU/Hurd // platforms using GNU C++. #ifndef ACE_CONFIG_HURD_H #define ACE_CONFIG_HURD_H #include /**/ "ace/pre.h" #if !defined (ACE_MT_SAFE) # define ACE_MT_SAFE 1 #endif #define ACE_PLATFORM_CONFIG config-hurd.h #define ACE_LACKS_SYS_SYSCTL_H /* ? #define ACE_USES_FIFO_SEM ACE_HAS_IP_MULTICAST ACE_LACKS_PERFECT_MULTICAST_FILTERING */ // Needed to differentiate between libc 5 and libc 6 (aka glibc). #include #if (defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) >= 500) # define ACE_HAS_PTHREADS_UNIX98_EXT #endif /* _XOPEN_SOURCE - 0 >= 500 */ # include "ace/config-posix.h" // AIO support pulls in the rt library, which pulls in the pthread // library. Disable AIO in single-threaded builds. #if defined (ACE_HAS_THREADS) # define ACE_HAS_CLOCK_GETTIME # define ACE_HAS_CLOCK_SETTIME #else # undef ACE_HAS_AIO_CALLS #endif // Then glibc/libc5 specific parts #if defined(__GLIBC__) # define ACE_HAS_SOCKLEN_T # define ACE_HAS_4_4BSD_SENDMSG_RECVMSG // glibc defines both of these, used in OS_String. # if defined (_GNU_SOURCE) # define ACE_HAS_STRNLEN # define ACE_HAS_WCSNLEN # endif // To avoid the strangeness with Linux's ::select (), which modifies // its timeout argument, use ::poll () instead. # define ACE_HAS_POLL # define ACE_HAS_SIGINFO_T # define ACE_LACKS_SIGINFO_H # define ACE_HAS_UCONTEXT_T # define ACE_HAS_SIGTIMEDWAIT #endif /* __GLIBC__ */ #define ACE_HAS_LSEEK64 //#define ACE_LACKS_LSEEK64_PROTOTYPE #define ACE_HAS_P_READ_WRITE // Use ACE's alternate cuserid() implementation since the use of the // system cuserid() is discouraged. #define ACE_HAS_ALT_CUSERID #if (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3) # define ACE_HAS_ISASTREAM_PROTOTYPE # define ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE # define ACE_HAS_CPU_SET_T #endif /* __GLIBC__ > 2 || __GLIBC__ === 2 && __GLIBC_MINOR__ >= 3) */ // Then the compiler specific parts #if defined (__GNUG__) // config-g++-common.h undef's ACE_HAS_STRING_CLASS with -frepo, so // this must appear before its #include. # define ACE_HAS_STRING_CLASS # include "ace/config-g++-common.h" #elif defined (__GNUC__) /** * GNU C compiler. * * We need to recognize the GNU C compiler since TAO has at least one * C source header and file * (TAO/orbsvcs/orbsvcs/SSLIOP/params_dup.{h,c}) that may indirectly * include this */ #else /* ! __GNUG__ */ # ifdef __cplusplus /* Let it slide for C compilers. */ # error unsupported compiler in ace/config-hurd.h # endif /* __cplusplus */ #endif /* ! __GNUG__*/ // Completely common part :-) // Platform/compiler has the sigwait(2) prototype #define ACE_HAS_SIGWAIT #define ACE_HAS_SIGSUSPEND #define ACE_HAS_UALARM #define ACE_HAS_STRSIGNAL #define ACE_HAS_XPG4_MULTIBYTE_CHAR #define ACE_HAS_VFWPRINTF #define ACE_LACKS_ITOW #define ACE_LACKS_WCSICMP #define ACE_LACKS_WCSNICMP #define ACE_LACKS_ISWASCII #define ACE_HAS_3_PARAM_WCSTOK #define ACE_HAS_3_PARAM_READDIR_R #if !defined (ACE_DEFAULT_BASE_ADDR) # define ACE_DEFAULT_BASE_ADDR ((char *) 0x80000000) #endif /* ! ACE_DEFAULT_BASE_ADDR */ #define ACE_HAS_ALLOCA // Compiler/platform has #define ACE_HAS_ALLOCA_H #define ACE_HAS_SYS_SYSINFO_H // Compiler/platform has the getrusage() system call. #define ACE_HAS_GETRUSAGE #define ACE_HAS_GETRUSAGE_PROTOTYPE #define ACE_HAS_BYTESWAP_H #define ACE_HAS_BSWAP_16 #define ACE_HAS_BSWAP_32 #if defined (__GNUC__) # define ACE_HAS_BSWAP_64 #endif #define ACE_HAS_CONSISTENT_SIGNAL_PROTOTYPES // Optimize ACE_Handle_Set for select(). #define ACE_HAS_HANDLE_SET_OPTIMIZED_FOR_SELECT // ONLY define this if you have config'd multicast into a 2.0.34 or // prior kernel. It is enabled by default in 2.0.35 kernels. #if !defined (ACE_HAS_IP_MULTICAST) # define ACE_HAS_IP_MULTICAST #endif /* ! ACE_HAS_IP_MULTICAST */ // At least for IPv4, Linux lacks perfect filtering. #if !defined ACE_LACKS_PERFECT_MULTICAST_FILTERING # define ACE_LACKS_PERFECT_MULTICAST_FILTERING 1 #endif /* ACE_LACKS_PERFECT_MULTICAST_FILTERING */ #define ACE_HAS_BIG_FD_SET // Linux defines struct msghdr in /usr/include/socket.h #define ACE_HAS_MSG // Linux "improved" the interface to select() so that it modifies // the struct timeval to reflect the amount of time not slept // (see NOTES in Linux's select(2) man page). #define ACE_HAS_NONCONST_SELECT_TIMEVAL #define ACE_DEFAULT_MAX_SOCKET_BUFSIZ 65535 #define ACE_CDR_IMPLEMENT_WITH_NATIVE_DOUBLE 1 #define ACE_HAS_GETPAGESIZE 1 // Platform defines struct timespec but not timespec_t #define ACE_LACKS_TIMESPEC_T // A conflict appears when including both and // with recent glibc headers. //#define ACE_HAS_PROC_FS // Platform supports System V IPC (most versions of UNIX, but not Win32) #define ACE_HAS_SYSV_IPC // Compiler/platform contains the file. #define ACE_HAS_SYS_SYSCALL_H // Platform/compiler supports global timezone variable. #define ACE_HAS_TIMEZONE #define ACE_HAS_TIMEZONE_GETTIMEOFDAY // Compiler supports the ssize_t typedef. #define ACE_HAS_SSIZE_T // Compiler/platform defines the sig_atomic_t typedef. #define ACE_HAS_SIG_ATOMIC_T // Compiler/platform defines a union semun for SysV shared memory. #define ACE_HAS_SEMUN #define ACE_HAS_POSIX_TIME #define ACE_HAS_GPERF #define ACE_HAS_DIRENT #define ACE_HAS_STRBUF_T #define ACE_SIZEOF_WCHAR 4 #define ACE_LACKS_GETIPNODEBYADDR #define ACE_LACKS_GETIPNODEBYNAME // Platform has POSIX terminal interface. #define ACE_HAS_TERMIOS // Linux implements sendfile(). #define ACE_HAS_SENDFILE 1 #define ACE_HAS_VOIDPTR_MMAP #define ACE_HAS_ICMP_SUPPORT 1 #define ACE_HAS_VASPRINTF // According to man pages Linux uses different (compared to UNIX systems) types // for setting IP_MULTICAST_TTL and IPV6_MULTICAST_LOOP / IP_MULTICAST_LOOP // in setsockopt/getsockopt. #define ACE_HAS_IP_MULTICAST_TTL_AS_INT 1 #define ACE_HAS_IPV6_MULTICAST_LOOP_AS_BOOL 1 #define ACE_HAS_IP_MULTICAST_LOOP_AS_INT 1 #define ACE_HAS_GETIFADDRS #define ACE_HAS_SVR4_DYNAMIC_LINKING #define ACE_HAS_AUTOMATIC_INIT_FINI #define ACE_HAS_DLSYM_SEGFAULT_ON_INVALID_HANDLE #define ACE_HAS_RECURSIVE_MUTEXES #define ACE_HAS_THREAD_SPECIFIC_STORAGE #define ACE_HAS_RECURSIVE_THR_EXIT_SEMANTICS #define ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R #define ACE_HAS_REENTRANT_FUNCTIONS #include /**/ "ace/post.h" #endif /* ACE_CONFIG_HURD_H */ debian/TAO-DPKG.mwc0000664000000000000000000000062012224735512011047 0ustar // $Id$ workspace { exclude { .pc examples orbsvcs/examples performance-tests orbsvcs/tests/Notify/performance-tests orbsvcs/performance-tests interop-tests tests examples/PluggableUDP/tests orbsvcs/tests orbsvcs/examples/CosEC/RtEC_Based/tests docs DevGuideExamples orbsvcs/DevGuideExamples utils/logWalker utils/monitor } } debian/libtao-tkresource-dev.install0000664000000000000000000000007012224735374015000 0ustar usr/lib/libTAO_TkResource.so usr/include/tao/TkResource debian/libace-inet-dev.install0000664000000000000000000000477112224735441013525 0ustar usr/lib/libACE_INet.so usr/include/ace/INet/Sock_IOStream.cpp usr/include/ace/INet/FTP_IOStream.h usr/include/ace/INet/HTTP_Request.inl usr/include/ace/INet/HTTP_IOStream.h usr/include/ace/INet/HTTP_Session.h usr/include/ace/INet/HTTP_ClientRequestHandler.h usr/include/ace/INet/HTTP_BasicAuthentication.h usr/include/ace/INet/FTP_URL.h usr/include/ace/INet/Response.h usr/include/ace/INet/HTTP_SessionBase.inl usr/include/ace/INet/StreamHandler.cpp usr/include/ace/INet/BidirStreamBuffer.cpp usr/include/ace/INet/HTTP_StreamPolicyBase.h usr/include/ace/INet/RequestHandler.h usr/include/ace/INet/FTP_Session.cpp usr/include/ace/INet/String_IOStream.h usr/include/ace/INet/HTTP_StreamPolicy.cpp usr/include/ace/INet/FTP_ClientRequestHandler.inl usr/include/ace/INet/HeaderBase.h usr/include/ace/INet/HTTP_URL.inl usr/include/ace/INet/BidirStreamBuffer.h usr/include/ace/INet/IOS_util.h usr/include/ace/INet/StreamInterceptor.cpp usr/include/ace/INet/FTP_IOStream.inl usr/include/ace/INet/ConnectionCache.inl usr/include/ace/INet/Sock_IOStream.h usr/include/ace/INet/ClientRequestHandler.inl usr/include/ace/INet/HTTP_Header.inl usr/include/ace/INet/HTTP_ClientRequestHandler.inl usr/include/ace/INet/HTTP_Session.cpp usr/include/ace/INet/ClientRequestHandler.h usr/include/ace/INet/HTTP_IOStream.inl usr/include/ace/INet/URLBase.inl usr/include/ace/INet/StreamInterceptor.h usr/include/ace/INet/AuthenticationBase.h usr/include/ace/INet/HTTP_URL.h usr/include/ace/INet/HTTP_Status.h usr/include/ace/INet/URLBase.h usr/include/ace/INet/HTTP_Request.h usr/include/ace/INet/BufferedStreamBuffer.cpp usr/include/ace/INet/FTP_ClientRequestHandler.h usr/include/ace/INet/FTP_Session.h usr/include/ace/INet/FTP_Request.inl usr/include/ace/INet/FTP_Request.h usr/include/ace/INet/INet_Export.h usr/include/ace/INet/FTP_Response.h usr/include/ace/INet/AuthenticationBase.inl usr/include/ace/INet/HTTP_StreamPolicyBase.cpp usr/include/ace/INet/ConnectionCache.h usr/include/ace/INet/INet_Log.h usr/include/ace/INet/HTTP_Response.h usr/include/ace/INet/HTTP_Status.inl usr/include/ace/INet/HTTP_Response.inl usr/include/ace/INet/StreamHandler.h usr/include/ace/INet/HTTP_SessionBase.h usr/include/ace/INet/String_IOStream.cpp usr/include/ace/INet/BufferedStreamBuffer.h usr/include/ace/INet/HeaderBase.inl usr/include/ace/INet/HTTP_BasicAuthentication.inl usr/include/ace/INet/HTTP_Header.h usr/include/ace/INet/FTP_Response.inl usr/include/ace/INet/FTP_URL.inl usr/include/ace/INet/HTTP_StreamPolicy.h usr/include/ace/INet/Request.h usr/lib/pkgconfig/ACE_INet.pc debian/libacexml-6.0.3.docs0000664000000000000000000000001612224747277012457 0ustar ACEXML/README debian/libace-dev.README.Debian0000664000000000000000000000317412224735536013241 0ustar ACE for Debian -------------- == Environment variables == If the software you are compiling requires $ACE_ROOT to be set (for example, the tutorials), you may set it to /usr/lib/ace. For bash, the command to do this is export ACE_ROOT=/usr/lib/ace Likewise, for TAO: export TAO_ROOT=${ACE_ROOT}/TAO == Compiling examples == To compile ACE or TAO examples (in libace-doc and libtao-orbsvcs-doc), you'll need: 1. to define ACE_ROOT and TAO_ROOT as explained above. 2. to install mpc-ace package if needed. 3. to copy and uncompress the example you want to test, e.g.: cp /usr/share/doc/libtao-orbsvcs-doc/examples/CosEC $HOME/ex1 find $HOME/ex1 -type f -name '*.gz' | xargs gunzip 4. to regenerate the GNUmakefiles for this new location: cd $HOME/ex1 mwc-ace -recurse -value_project install=. -value_project libout=. 5. now you can compile your example. == Service Configuration == You'll need to carefully review server.conf files to ensure ACE service configuration will work. Indeed in a lot of examples, the library name in dynamic directives is a library root name which might need some changes. For example, in the following server.conf excerpt (taken from #656040 bug report): dynamic Server_Logging_Service Service_Object * netsvcs:_make_ACE_Server_Logging_Acceptor() active "-p 20009" netsvcs refers to libnetsvcs.so. And this is what will be looked for. Unless you have libnetsvcs-dev package installed, the lookup will fail. Another way to fix this would be to replace netsvcs with the full library name, e.g. libnetsvcs-6.0.3.so. -- Thomas Girard , Sun, 23 May 2010 11:04:27 +0200 debian/mpc-ace.install0000664000000000000000000000057012224735512012072 0ustar ../../bin/m[p,w]c.pl usr/lib/ace/bin ../../bin/MakeProjectCreator usr/lib/ace/bin ../../MPC/config usr/lib/ace/MPC ../../MPC/modules usr/lib/ace/MPC ../../MPC/templates usr/lib/ace/MPC ../../MPC/*.pl usr/lib/ace/MPC ../../MPC/ChangeLog usr/lib/ace/MPC ../../bin/PerlACE/*.pm usr/lib/ace/bin/PerlACE debian/cmp-installation.sh0000775000000000000000000000155312224735512013014 0ustar #!/bin/sh # $Id$ # # This script compares autoconf-based installation against regular builds # provided files. # # This script should be run after `make install DESTDIR=debian/tmp' has been # run on autoconf-based build. # set -e P1=ACE_wrappers P2=debian/tmp/usr/include # Find files # ff ff() { find "$1" -name '*.h' -o -name '*.inl' -o -name '*.hpp' -o -name '*.ipp' } # Remove path with examples, tests and tutorial from STDIN drop() { grep -E -v '(examples|tests|tutorials)/' } # Removed unused/unshipped stuff unused() { grep -E -v '^/(ASNMP|CIAO|TAO_IDL|ace/QoS|apps|contrib|utils)' } F1=`mktemp -t ace_regular.XXXXXXXXXX` F2=`mktemp -t ace_autoconf.XXXXXXXXXX` trap "rm $F1 $F2" 0 ff $P1 | sed -e "s@$P1@@" -e "s@/TAO@@" -e "s@/protocols@@" -e "s@^/orbsvcs@@" | drop | unused | sort >> $F1 ff $P2 | sed -e "s@$P2@@" | sort >> $F2 diff -u $F1 $F2 debian/libtao-orbsvcs-2.0.3.install0000664000000000000000000000447612224747277014200 0ustar usr/lib/libTAO_AV-*.so usr/lib/libTAO_CosConcurrency-*.so usr/lib/libTAO_CosConcurrency_Skel-*.so usr/lib/libTAO_CosConcurrency_Serv-*.so usr/lib/libTAO_CosEvent-*.so usr/lib/libTAO_CosEvent_Skel-*.so usr/lib/libTAO_CosEvent_Serv-*.so usr/lib/libTAO_CosLifeCycle-*.so usr/lib/libTAO_CosLoadBalancing-*.so usr/lib/libTAO_CosNaming-*.so usr/lib/libTAO_CosNaming_Skel-*.so usr/lib/libTAO_CosNaming_Serv-*.so usr/lib/libTAO_CosNotification-*.so usr/lib/libTAO_CosNotification_Persist-*.so usr/lib/libTAO_CosNotification_Skel-*.so usr/lib/libTAO_CosNotification_Serv-*.so usr/lib/libTAO_CosNotification_MC-*.so usr/lib/libTAO_CosNotification_MC_Ext-*.so usr/lib/libTAO_CosProperty-*.so usr/lib/libTAO_CosProperty_Skel-*.so usr/lib/libTAO_CosProperty_Serv-*.so usr/lib/libTAO_CosTime-*.so usr/lib/libTAO_CosTrading-*.so usr/lib/libTAO_CosTrading_Skel-*.so usr/lib/libTAO_CosTrading_Serv-*.so usr/lib/libTAO_CosLifeCycle_Skel-*.so usr/lib/libTAO_DsEventLogAdmin-*.so usr/lib/libTAO_DsEventLogAdmin_Skel-*.so usr/lib/libTAO_DsEventLogAdmin_Serv-*.so usr/lib/libTAO_DsLogAdmin-*.so usr/lib/libTAO_DsLogAdmin_Skel-*.so usr/lib/libTAO_DsLogAdmin_Serv-*.so usr/lib/libTAO_DsNotifyLogAdmin-*.so usr/lib/libTAO_DsNotifyLogAdmin_Skel-*.so usr/lib/libTAO_DsNotifyLogAdmin_Serv-*.so usr/lib/libTAO_FaultTolerance-*.so usr/lib/libTAO_FT_ClientORB-*.so usr/lib/libTAO_FT_ServerORB-*.so usr/lib/libTAO_FTORB_Utils-*.so usr/lib/libTAO_FTRT_EventChannel-*.so usr/lib/libTAO_FtRtEvent-*.so usr/lib/libTAO_FTRT_ClientORB-*.so usr/lib/libTAO_HTIOP-*.so usr/lib/libTAO_IFRService-*.so usr/lib/libTAO_PortableGroup-*.so usr/lib/libTAO_RTCORBAEvent-*.so usr/lib/libTAO_RTEvent-*.so usr/lib/libTAO_RTEvent_Serv-*.so usr/lib/libTAO_RTEvent_Skel-*.so usr/lib/libTAO_RTEventLogAdmin-*.so usr/lib/libTAO_RTEventLogAdmin_Skel-*.so usr/lib/libTAO_RTEventLogAdmin_Serv-*.so usr/lib/libTAO_RTKokyuEvent-*.so usr/lib/libTAO_RTSched-*.so usr/lib/libTAO_RTSchedEvent-*.so usr/lib/libTAO_RT_Notification-*.so usr/lib/libTAO_SSLIOP-*.so usr/lib/libTAO_Security-*.so usr/lib/libTAO_Svc_Utils-*.so usr/lib/libTAO_Notify_Service-*.so usr/lib/libTAO_CosTime_Serv-*.so usr/lib/libTAO_CosTime_Skel-*.so usr/lib/libTAO_Catior_i-*.so usr/lib/libTAO_ImR_Locator_IDL-*.so usr/lib/libTAO_ImR_Activator-*.so usr/lib/libTAO_ReplicationManagerLib-*.so usr/lib/libTAO_ImR_Activator_IDL-*.so usr/lib/libTAO_ImR_Locator-*.so debian/cmp-autoconf-regular.sh0000775000000000000000000000135012224735512013563 0ustar #!/bin/sh usage() { cat >&2 << EOF usage: $0 compares ACE config.h files (using cpp) e.g.: $0 ACE_wrappers/ace/config-linux.h objdir/ace/config.h EOF } report_to() { g++ -E -DACE_HAS_LINUX_NPTL -dM -I"$ACE_ROOT" $1 | \ grep '^#define ACE' | grep -v '^#define ACE_CONFIG' | \ sed -e 's/^#define \+\([A-Z0-9_]\+\) *$/#define \1 1/g' | \ sort >> $2 } if test "a$ACE_ROOT" = "a"; then echo "$0: please define ACE_ROOT" >&2 exit 1 fi if test "$#" -ne 2; then usage exit 2 fi ONE_TMP=`mktemp -t ace_cmp_one.XXXXXXXXXX` || exit 1 TWO_TMP=`mktemp -t ace_cmp_two.XXXXXXXXXX` || exit 1 trap "rm $ONE_TMP $TWO_TMP" EXIT report_to $1 $ONE_TMP report_to $2 $TWO_TMP diff -u $ONE_TMP $TWO_TMP debian/libace-dev.links0000664000000000000000000000010612224735417012231 0ustar usr/include/ace usr/lib/ace/ace usr/lib usr/lib/ace/lib debian/libtao-dev.docs0000664000000000000000000000005712224735512012075 0ustar TAO/README TAO/VERSION TAO/PROBLEM-REPORT-FORM debian/libace-flreactor-6.0.3.install0000664000000000000000000000003612224747277014435 0ustar usr/lib/libACE_FlReactor-*.so debian/libkokyu-6.0.3.docs0000664000000000000000000000001512224747277012347 0ustar Kokyu/README debian/libtao-flresource-dev.install0000664000000000000000000000007012224735374014763 0ustar usr/lib/libTAO_FlResource.so usr/include/tao/FlResource debian/tao_nsdel.sgml0000664000000000000000000000761512224735420012036 0ustar TAO_ORB_Options1"> tao_cosnaming1"> tao_nslist1"> tao_nsadd1"> tao_cosnaming"> ]> TAO_NSDEL 1 &applname; Naming Service delete utility. SYNOPSIS &applname; -ORBoptions OPTION DESCRIPTION &applname; deletes an entry from the NamingService. &applname; requires a running NamingService. OPTIONS -ORBoptions The program follows the usual TAO ORB command line syntax. See &man_tao_orb_options;. --ns IOR Use NamingService IOR instead of default. --name name Delete the entry with name in NamingService. --destroy Destroy a naming context before unbinding, otherwise orphan it. --quiet Do not display all ID/Kinds found/deleted. --ctxsep character Set context separation character, defaults to "/". --kindsep character Set ID/Kind separation character, defaults to ".". --rtt seconds Set the relative round trip timeout policy to seconds. SEE ALSO &seealso; AUTHOR Carlos O'Ryan <coryan@uci.edu> Paul Caffrey <denginere@hotmail.com> Simon Massey <sma@prismtech.com> debian/tao-ifr.install0000664000000000000000000000010012224735434012116 0ustar usr/bin/tao_ifr_service usr/bin/tao_ifr usr/lib/ace/TAO/tao_ifr debian/libkokyu-dev.doc-base.intro0000664000000000000000000000056312224735512014335 0ustar Document: libkokyu-intro Title: Kokyu, middleware framework for flexible scheduling and dispatching Author: Douglas C. Schmidt and his research group Abstract: An introduction to Kokyu: what it is, use cases, configuration, usage Section: Programming/C++ Format: html Index: /usr/share/doc/libkokyu-dev/docs/Kokyu.html Files: /usr/share/doc/libkokyu-dev/docs/Kokyu.html debian/libnetsvcs-dev.install0000664000000000000000000000020012224735512013503 0ustar ../../netsvcs/lib/*.h usr/include/netsvcs ../../netsvcs/lib/*_T.cpp usr/include/netsvcs ../../netsvcs/lib/libnetsvcs.so usr/lib debian/libtao-dev.dirs0000664000000000000000000000002412224735417012104 0ustar usr/lib/ace/TAO/MPC debian/libace-qtreactor-dev.install0000664000000000000000000000013112224735420014551 0ustar usr/lib/libACE_QtReactor.so usr/include/ace/QtReactor usr/lib/pkgconfig/ACE_QtReactor.pc debian/tao-tls.manpages0000664000000000000000000000013712224735417012300 0ustar debian/tao_tls_basic.1 debian/tao_tls_event.1 debian/tao_tls_notify.1 debian/tao_tls_rtevent.1 debian/libace-ssl-6.0.3.install0000664000000000000000000000003012224747277013247 0ustar usr/lib/libACE_SSL-*.so debian/libkokyu-dev.docs0000664000000000000000000000004412224735512012450 0ustar Kokyu/README Kokyu/docs Kokyu/tests debian/tao-load.install0000664000000000000000000000006012224735434012262 0ustar usr/bin/tao_loadmanager usr/bin/tao_loadmonitor debian/tao-costime.install0000664000000000000000000000006512224735417013014 0ustar usr/bin/tao_costime_clerk usr/bin/tao_costime_server debian/libace-tkreactor-6.0.3.install0000664000000000000000000000003612224747277014452 0ustar usr/lib/libACE_TkReactor-*.so debian/tao-costrading.docs0000664000000000000000000000004312224735512012760 0ustar TAO/orbsvcs/Trading_Service/README debian/libace-rmcast-dev.install0000664000000000000000000000012012224735420014034 0ustar usr/include/ace/RMCast usr/lib/libACE_RMCast.so usr/lib/pkgconfig/ACE_RMCast.pc debian/libace-doc.docs0000664000000000000000000000002712224735517012033 0ustar docs html/libace-doc/* debian/libace-tmcast-dev.install0000664000000000000000000000012012224735420014036 0ustar usr/include/ace/TMCast usr/lib/libACE_TMCast.so usr/lib/pkgconfig/ACE_TMCast.pc debian/libtao-2.0.3.docs0000664000000000000000000000007012224747277011765 0ustar TAO/README TAO/VERSION TAO/PROBLEM-REPORT-FORM TAO/NEWS debian/tao-imr.docs0000664000000000000000000000005012224735512011410 0ustar TAO/orbsvcs/ImplRepo_Service/README.txt debian/libace-flreactor-dev.install0000664000000000000000000000013112224735420014526 0ustar usr/lib/libACE_FlReactor.so usr/include/ace/FlReactor usr/lib/pkgconfig/ACE_FlReactor.pc debian/libace-xtreactor-dev.install0000664000000000000000000000013112224735420014560 0ustar usr/lib/libACE_XtReactor.so usr/include/ace/XtReactor usr/lib/pkgconfig/ACE_XtReactor.pc debian/tao-cosnotification.install0000664000000000000000000000003412224735417014540 0ustar usr/bin/tao_cosnotification debian/patches/0000775000000000000000000000000012224747277010635 5ustar debian/patches/90-patch-mpc-basedir.diff0000664000000000000000000000337312224735512015173 0ustar Description: make $ACE_ROOT/bin/m{w,p}c.pl relocatable $ACE_ROOT/bin/m{w,p}c.pl look up for MPC modules under its base path, in $ACE_ROOT/bin/MakeProjectCreator. But we package those scripts under /usr/bin, while MakeProjectCreator folder is put under $ACE_ROOT/bin (in other words, /usr/lib/ace/bin) . This patch sets MPC path dir to use $ACE_ROOT if defined (used when building ACE+TAO packages), or /usr/lib/ace if not. Forwarded: not-needed Author: Thomas Girard Last-Update: 2011-07-24 --- a/bin/mpc.pl +++ b/bin/mpc.pl @@ -20,13 +20,9 @@ use File::Spec; use File::Basename; -my($basePath) = (defined $FindBin::RealBin ? $FindBin::RealBin : - File::Spec->rel2abs(dirname($0))); -if ($^O eq 'VMS') { - $basePath = File::Spec->rel2abs(dirname($0)) if ($basePath eq ''); - $basePath = VMS::Filespec::unixify($basePath); -} -$basePath .= '/MakeProjectCreator'; +my($aceroot) = $ENV{ACE_ROOT}; +my($basePath) = (defined $aceroot ? + $aceroot : '/usr/lib/ace') . '/bin/MakeProjectCreator'; my($mpcroot) = $ENV{MPC_ROOT}; my($mpcpath) = (defined $mpcroot ? $mpcroot : --- a/bin/mwc.pl +++ b/bin/mwc.pl @@ -20,13 +20,9 @@ use File::Spec; use File::Basename; -my($basePath) = (defined $FindBin::RealBin ? $FindBin::RealBin : - File::Spec->rel2abs(dirname($0))); -if ($^O eq 'VMS') { - $basePath = File::Spec->rel2abs(dirname($0)) if ($basePath eq ''); - $basePath = VMS::Filespec::unixify($basePath); -} -$basePath .= '/MakeProjectCreator'; +my($aceroot) = $ENV{ACE_ROOT}; +my($basePath) = (defined $aceroot ? + $aceroot : '/usr/lib/ace') . '/bin/MakeProjectCreator'; my($mpcroot) = $ENV{MPC_ROOT}; my($mpcpath) = (defined $mpcroot ? $mpcroot : debian/patches/16-ace-inet-pkgconfig-files.diff0000664000000000000000000000263612224747277016454 0ustar Description: generate pkg-config files for libACE_INet and libACE_INet_SSL They are missing upstream. Forwarded: needed Author: Pau Garcia i Quiles Last-Update: 2011-02-19 --- a/protocols/ace/INet/ACE_INet.pc.in +++ b/protocols/ace/INet/ACE_INet.pc.in @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: ACE_INet +Description: ACE INet Client Protocols Library +Requires: ACE +Version: @VERSION@ +Libs: -L${libdir} -lACE_INet +Cflags: -I${includedir} --- a/protocols/ace/INet/ACE_INet_SSL.pc.in +++ b/protocols/ace/INet/ACE_INet_SSL.pc.in @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: ACE_INet_SSL +Description: ACE INet Client Protocols With SSL Library +Requires: ACE_SSL +Version: @VERSION@ +Libs: -L${libdir} -lACE_INet_SSL +Cflags: -I${includedir} --- a/protocols/ace/INet/inet.mpc +++ b/protocols/ace/INet/inet.mpc @@ -54,6 +54,11 @@ project(INet) : acelib, ace_output, inst specific { install_dir = ace/INet } + + Pkgconfig_Files { + ACE_INet.pc.in + } + } // This project will be generated with and without ssl=1 feature --- a/protocols/ace/INet/inet_ssl.mpc +++ b/protocols/ace/INet/inet_ssl.mpc @@ -25,4 +25,9 @@ project(INet_SSL) : acelib, ace_output, specific { install_dir = ace/INet } + + Pkgconfig_Files { + ACE_INet_SSL.pc.in + } + } debian/patches/20-versioned_libs.diff0000664000000000000000000001314712224747277014723 0ustar Description: Change versioning from libACE.so.x.y.z to libACE-x.y.z.so ACE+TAO library names (and SONAMEs) default to libfoo.so.x.y.z. Since no ABI/API is guaranteed between ACE+TAO versions, this patch implements recommended (e.g. libtool) naming in these cases, i.e. libfoo-x.y.z.so. Forwarded: submitted, more work needed before acceptance Author: Thomas Girard Last-Update: 2010-12-26 --- a/include/makeinclude/wrapper_macros.GNU +++ b/include/makeinclude/wrapper_macros.GNU @@ -78,7 +78,10 @@ # If versioned_so is 1 (enabled), the SOVERSION make # variable can also be set to specify the version info # to append to the name - it should have a leading '.' - -# else it defaults to .ACE_MAJOR.ACE_MINOR.ACE_BETA. +# else it defaults to .ACE_MAJOR.ACE_MINOR.ACE_BETA. If 2, +# the version will be appended to the name but *before* the +# $(SOEXT) - it should have a lead '-' - else it defaults to +# -ACE_MAJOR.ACE_MINOR.ACE_BETA. # wfmo Build with wfmo support (Win32 only) # winregistry Build with windows registry support (Win32 only) # winnt Build WinNT-specific projects (Win32 only) --- a/MPC/prj_install.pl 2011-04-27 15:26:27.000000000 +0200 +++ b/MPC/prj_install.pl 2011-07-22 16:01:11.800776071 +0200 @@ -186,7 +186,7 @@ my $fh = new FileHandle(); if (opendir($fh, $odir)) { foreach my $file (grep(!/^\.\.?$/, readdir($fh))) { - if ($file =~ /^lib$name\.(a|so|sl|dylib)/ || + if ($file =~ /^lib$name(-[0-9]+(\.[0-9]+)*)?\.(a|so|sl|dylib)/ || $file =~ /^(lib)?$name.*\.(dll|lib)$/i) { push(@libs, "$dir$insdir$binarydir$file"); } --- a/include/makeinclude/platform_g++_common.GNU 2011-06-06 19:01:01.000000000 +0200 +++ b/include/makeinclude/platform_g++_common.GNU 2011-07-22 16:01:11.804776084 +0200 @@ -97,7 +97,7 @@ # If the platform file didn't already set versioned_so, default to 1. versioned_so ?= 1 with_ld ?= -ifeq ($(versioned_so),1) +ifneq ($(versioned_so),0) ifeq ($(with_ld),hpux) SOFLAGS += -Wl,+h -Wl,$(SONAME) else --- a/include/makeinclude/rules.lib.GNU 2010-09-23 18:17:42.000000000 +0200 +++ b/include/makeinclude/rules.lib.GNU 2011-07-22 16:01:11.804776084 +0200 @@ -11,7 +11,7 @@ # Library versioning #--------------------------------------------------------------------------- -ifeq ($(versioned_so),1) +ifneq ($(versioned_so),0) # Turn on symbol versioning. The scheme that we follow is to allow # applications dependent on libraries, with same version numbers (major, # minor and beta) to run, but applications with dependencies on libraries @@ -20,13 +20,23 @@ # Version number of the libraries # ifeq ($(SOVERSION),) - SOVERSION = .$(GNUACE_PROJECT_VERSION) + ifeq ($(versioned_so),1) + SOVERSION = .$(GNUACE_PROJECT_VERSION) + else ifeq ($(versioned_so),2) + SOVERSION = -$(GNUACE_PROJECT_VERSION) + else + $(error unknown value for versioned_so: $(versioned_so)) + endif endif # SOVERSION # Name that will be written into the dynamic library # ifeq ($(SONAME),) - SONAME = $(SHLIB)$(SOVERSION) + ifeq ($(versioned_so),1) + SONAME = $(SHLIB)$(SOVERSION) + else ifeq ($(versioned_so),2) + SONAME = $(patsubst %.$(SOEXT),%,$(SHLIB))$(SOVERSION).$(SOEXT) + endif endif # SONAME endif # versioned_so @@ -47,9 +57,15 @@ # Setup shared library variables, including versions. VSHLIB_NO_VER = $(ARCH_SHLIB:%.$(SOEXT)=%$(VAR).$(SOEXT)) CLEANUP_VSHLIB_NO_VER = $(CLEANUP_SHLIB:%.$(SOEXT)=%$(VAR).$(SOEXT)) -VSHLIB = $(VSHLIB_NO_VER:%=%$(SOVERSION)) -CLEANUP_VSHLIB = $(CLEANUP_VSHLIB_NO_VER:%=%$(SOVERSION)) -SHLIB_WITH_VER = $(SHLIB:%=%$(SOVERSION)) +ifneq ($(versioned_so),2) + VSHLIB = $(VSHLIB_NO_VER:%=%$(SOVERSION)) + CLEANUP_VSHLIB = $(CLEANUP_VSHLIB_NO_VER:%=%$(SOVERSION)) + SHLIB_WITH_VER = $(SHLIB:%=%$(SOVERSION)) +else + VSHLIB = $(patsubst %.$(SOEXT),%,$(VSHLIB_NO_VER))$(SOVERSION).$(SOEXT) + CLEANUP_VSHLIB = $(patsubst %.$(SOEXT),%,$(CLEANUP_VSHLIB_NO_VER))$(SOVERSION).$(SOEXT) + SHLIB_WITH_VER = $(patsubst %.$(SOEXT),%,$(SHLIB))$(SOVERSION).$(SOEXT) +endif SHLIBA ?= VSHLIBA = $(ARCH_SHLIBA:%.$(LIBEXT)=%$(VAR).$(LIBEXT)) --- a/include/makeinclude/rules.local.GNU 2011-05-12 20:11:57.000000000 +0200 +++ b/include/makeinclude/rules.local.GNU 2011-07-22 16:01:11.804776084 +0200 @@ -311,13 +311,23 @@ fi else #firstword of LN_S is not cp, so we're using real symlinks ifneq ($(SOVERSION),) - @if test $(ARCH_SOURCE_DIR) != $(@D) ; then \ + ifneq ($(versioned_so),2) + @if test $(ARCH_SOURCE_DIR) != $(@D) ; then \ if test ! -s $@ ; then \ $(RM) $(@:%.$(SOEXT)$(SOVERSION)=%.$(SOEXT)); \ echo $(LN_S) $(ARCH_SOURCE_DIR)/$(@F) $(@:%.$(SOEXT)$(SOVERSION)=%.$(SOEXT)); \ $(LN_S) $(ARCH_SOURCE_DIR)/$(@F) $(@:%.$(SOEXT)$(SOVERSION)=%.$(SOEXT)); \ fi ; \ - fi + fi + else + @if test $(ARCH_SOURCE_DIR) != $(@D) ; then \ + if test ! -s $@ ; then \ + $(RM) $(@:%$(SOVERSION).$(SOEXT)=%.$(SOEXT)); \ + echo $(LN_S) $(ARCH_SOURCE_DIR)/$(@F) $(@:%$(SOVERSION).$(SOEXT)=%.$(SOEXT)); \ + $(LN_S) $(ARCH_SOURCE_DIR)/$(@F) $(@:%$(SOVERSION).$(SOEXT)=%.$(SOEXT)); \ + fi ; \ + fi + endif #versioned_so endif #SOVERSION @if test $(ARCH_SOURCE_DIR) != $(@D) ; then \ if test ! -s $@ ; then \ @@ -350,6 +360,8 @@ -$(RM) $(SHLIB_UNCHECKED) ifeq ($(versioned_so),1) -$(RM) $(SHLIB_UNCHECKED)$(SOVERSION) +else ifeq ($(versioned_so),2) + -$(RM) $(SHLIB_UNCHECKED:.$(SOEXT)=$(SOVERSION).$(SOEXT)) endif endif debian/patches/92-default-ACE_ROOT.diff0000664000000000000000000000124112224747277014572 0ustar Description: define $ACE_ROOT in generated GNUmakefile if needed TODO: not sure whether we need it. Forwarded: no Author: Thomas Girard Last-Update: 2010-05-24 --- a/bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm +++ b/bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm @@ -94,6 +94,9 @@ "ifeq (\$(findstring k,\$(MAKEFLAGS)),k)$crlf", " KEEP_GOING = -$crlf", "endif$crlf$crlf", + "ifndef ACE_ROOT$crlf", + " export ACE_ROOT = /usr/lib/ace$crlf", + "endif$crlf", "include \$(ACE_ROOT)/include/makeinclude/macros.GNU$crlf"; if ($named) { debian/patches/reduce-doxygen-doc.diff0000664000000000000000000001522012224747277015154 0ustar --- pkg-ace.orig/etc/ace.doxygen +++ pkg-ace/etc/ace.doxygen @@ -89,7 +89,7 @@ HTML_FOOTER = HTML_STYLESHEET = HTML_ALIGN_MEMBERS = YES -GENERATE_HTMLHELP = YES +GENERATE_HTMLHELP = NO #--------------------------------------------------------------------------- # configuration options related to the LaTeX output @@ -174,11 +174,13 @@ HAVE_DOT = YES CLASS_GRAPH = YES -COLLABORATION_GRAPH = YES +COLLABORATION_GRAPH = NO INCLUDE_GRAPH = NO INCLUDED_BY_GRAPH = NO GRAPHICAL_HIERARCHY = YES -DOT_MULTI_TARGETS = YES +DOT_MULTI_TARGETS = YES +DOT_GRAPH_MAX_NODES = 15 +DOT_IMAGE_FORMAT = png MAX_DOT_GRAPH_DEPTH = 3 # The tag DOT_PATH can be used to specify the path where the dot tool can be @@ -189,4 +191,4 @@ # Configuration::additions related to the search engine #--------------------------------------------------------------------------- -SEARCHENGINE = YES +SEARCHENGINE = NO --- pkg-ace.orig/etc/ace_inet.doxygen +++ pkg-ace/etc/ace_inet.doxygen @@ -79,7 +79,7 @@ HTML_FOOTER = HTML_STYLESHEET = HTML_ALIGN_MEMBERS = YES -GENERATE_HTMLHELP = YES +GENERATE_HTMLHELP = NO #--------------------------------------------------------------------------- # configuration options related to the LaTeX output @@ -147,11 +147,13 @@ HAVE_DOT = YES CLASS_GRAPH = YES -COLLABORATION_GRAPH = YES +COLLABORATION_GRAPH = NO INCLUDE_GRAPH = NO INCLUDED_BY_GRAPH = NO GRAPHICAL_HIERARCHY = YES -DOT_MULTI_TARGETS = YES +DOT_MULTI_TARGETS = YES +DOT_GRAPH_MAX_NODES = 15 +DOT_IMAGE_FORMAT = png MAX_DOT_GRAPH_DEPTH = 3 # The tag DOT_PATH can be used to specify the path where the dot tool can be @@ -162,5 +164,5 @@ # Configuration::additions related to the search engine #--------------------------------------------------------------------------- -SEARCHENGINE = YES +SEARCHENGINE = NO --- pkg-ace.orig/etc/ace_man.doxygen +++ pkg-ace/etc/ace_man.doxygen @@ -79,7 +79,7 @@ HTML_FOOTER = HTML_STYLESHEET = HTML_ALIGN_MEMBERS = YES -GENERATE_HTMLHELP = YES +GENERATE_HTMLHELP = NO #--------------------------------------------------------------------------- # configuration options related to the LaTeX output @@ -151,7 +151,9 @@ INCLUDE_GRAPH = NO INCLUDED_BY_GRAPH = NO GRAPHICAL_HIERARCHY = NO -DOT_MULTI_TARGETS = YES +DOT_MULTI_TARGETS = YES +DOT_GRAPH_MAX_NODES = 15 +DOT_IMAGE_FORMAT = png MAX_DOT_GRAPH_DEPTH = 3 # The tag DOT_PATH can be used to specify the path where the dot tool can be --- pkg-ace.orig/etc/ace_qos.doxygen +++ pkg-ace/etc/ace_qos.doxygen @@ -79,7 +79,7 @@ HTML_FOOTER = HTML_STYLESHEET = HTML_ALIGN_MEMBERS = YES -GENERATE_HTMLHELP = YES +GENERATE_HTMLHELP = NO #--------------------------------------------------------------------------- # configuration options related to the LaTeX output @@ -147,11 +147,13 @@ HAVE_DOT = YES CLASS_GRAPH = YES -COLLABORATION_GRAPH = YES +COLLABORATION_GRAPH = NO INCLUDE_GRAPH = NO INCLUDED_BY_GRAPH = NO GRAPHICAL_HIERARCHY = YES -DOT_MULTI_TARGETS = YES +DOT_MULTI_TARGETS = YES +DOT_GRAPH_MAX_NODES = 15 +DOT_IMAGE_FORMAT = png MAX_DOT_GRAPH_DEPTH = 3 # The tag DOT_PATH can be used to specify the path where the dot tool can be @@ -162,5 +164,5 @@ # Configuration::additions related to the search engine #--------------------------------------------------------------------------- -SEARCHENGINE = YES +SEARCHENGINE = NO --- pkg-ace.orig/etc/ace_rmcast.doxygen +++ pkg-ace/etc/ace_rmcast.doxygen @@ -79,7 +79,7 @@ HTML_FOOTER = HTML_STYLESHEET = HTML_ALIGN_MEMBERS = YES -GENERATE_HTMLHELP = YES +GENERATE_HTMLHELP = NO #--------------------------------------------------------------------------- # configuration options related to the LaTeX output @@ -147,11 +147,13 @@ HAVE_DOT = YES CLASS_GRAPH = YES -COLLABORATION_GRAPH = YES +COLLABORATION_GRAPH = NO INCLUDE_GRAPH = NO INCLUDED_BY_GRAPH = NO GRAPHICAL_HIERARCHY = YES -DOT_MULTI_TARGETS = YES +DOT_MULTI_TARGETS = YES +DOT_GRAPH_MAX_NODES = 15 +DOT_IMAGE_FORMAT = png MAX_DOT_GRAPH_DEPTH = 3 # The tag DOT_PATH can be used to specify the path where the dot tool can be @@ -162,5 +164,5 @@ # Configuration::additions related to the search engine #--------------------------------------------------------------------------- -SEARCHENGINE = YES +SEARCHENGINE = NO --- pkg-ace.orig/etc/ace_ssl.doxygen +++ pkg-ace/etc/ace_ssl.doxygen @@ -79,7 +79,7 @@ HTML_FOOTER = HTML_STYLESHEET = HTML_ALIGN_MEMBERS = YES -GENERATE_HTMLHELP = YES +GENERATE_HTMLHELP = NO #--------------------------------------------------------------------------- # configuration options related to the LaTeX output @@ -147,11 +147,13 @@ HAVE_DOT = YES CLASS_GRAPH = YES -COLLABORATION_GRAPH = YES +COLLABORATION_GRAPH = NO INCLUDE_GRAPH = NO INCLUDED_BY_GRAPH = NO GRAPHICAL_HIERARCHY = YES -DOT_MULTI_TARGETS = YES +DOT_MULTI_TARGETS = YES +DOT_GRAPH_MAX_NODES = 15 +DOT_IMAGE_FORMAT = png MAX_DOT_GRAPH_DEPTH = 3 # The tag DOT_PATH can be used to specify the path where the dot tool can be @@ -162,5 +164,5 @@ # Configuration::additions related to the search engine #--------------------------------------------------------------------------- -SEARCHENGINE = YES +SEARCHENGINE = NO --- pkg-ace.orig/etc/acexml.doxygen +++ pkg-ace/etc/acexml.doxygen @@ -79,7 +79,7 @@ HTML_FOOTER = HTML_STYLESHEET = HTML_ALIGN_MEMBERS = YES -GENERATE_HTMLHELP = YES +GENERATE_HTMLHELP = NO #--------------------------------------------------------------------------- # configuration options related to the LaTeX output @@ -147,11 +147,13 @@ HAVE_DOT = YES CLASS_GRAPH = YES -COLLABORATION_GRAPH = YES +COLLABORATION_GRAPH = NO INCLUDE_GRAPH = NO INCLUDED_BY_GRAPH = NO GRAPHICAL_HIERARCHY = YES -DOT_MULTI_TARGETS = YES +DOT_MULTI_TARGETS = YES +DOT_GRAPH_MAX_NODES = 15 +DOT_IMAGE_FORMAT = png MAX_DOT_GRAPH_DEPTH = 3 # The tag DOT_PATH can be used to specify the path where the dot tool can be @@ -162,5 +164,5 @@ # Configuration::additions related to the search engine #--------------------------------------------------------------------------- -SEARCHENGINE = YES +SEARCHENGINE = NO debian/patches/35_disable_sslv2.diff0000664000000000000000000000745712224735512014534 0ustar Description: SSLv2 was disabled in Debian in OpenSSL 1.0.0d, remove it from ACE too Forwarded: yes Author: Pau Garcia i Quiles Last-Update: 2011-04-26 --- a/ace/SSL/SSL_Context.cpp +++ b/ace/SSL/SSL_Context.cpp @@ -236,15 +236,6 @@ ACE_SSL_Context::set_mode (int mode) switch (mode) { - case ACE_SSL_Context::SSLv2_client: - method = ::SSLv2_client_method (); - break; - case ACE_SSL_Context::SSLv2_server: - method = ::SSLv2_server_method (); - break; - case ACE_SSL_Context::SSLv2: - method = ::SSLv2_method (); - break; case ACE_SSL_Context::SSLv3_client: method = ::SSLv3_client_method (); break; @@ -254,15 +245,6 @@ ACE_SSL_Context::set_mode (int mode) case ACE_SSL_Context::SSLv3: method = ::SSLv3_method (); break; - case ACE_SSL_Context::SSLv23_client: - method = ::SSLv23_client_method (); - break; - case ACE_SSL_Context::SSLv23_server: - method = ::SSLv23_server_method (); - break; - case ACE_SSL_Context::SSLv23: - method = ::SSLv23_method (); - break; case ACE_SSL_Context::TLSv1_client: method = ::TLSv1_client_method (); break; @@ -335,14 +317,10 @@ ACE_SSL_Context::load_trusted_ca (const // For TLS/SSL servers scan all certificates in ca_file and ca_dir and // list them as acceptable CAs when requesting a client certificate. - if (mode_ == SSLv23 - || mode_ == SSLv23_server - || mode_ == TLSv1 + if (mode_ == TLSv1 || mode_ == TLSv1_server || mode_ == SSLv3 - || mode_ == SSLv3_server - || mode_ == SSLv2 - || mode_ == SSLv2_server) + || mode_ == SSLv3_server) { // Note: The STACK_OF(X509_NAME) pointer is a copy of the pointer in // the CTX; any changes to it by way of these function calls will --- a/ace/SSL/SSL_Context.h +++ b/ace/SSL/SSL_Context.h @@ -82,16 +82,16 @@ public: enum { INVALID_METHOD = -1, - SSLv2_client = 1, +/* SSLv2_client = 1, SSLv2_server, - SSLv2, - SSLv3_client, + SSLv2, */ + SSLv3_client = 4, SSLv3_server, SSLv3, - SSLv23_client, +/* SSLv23_client, SSLv23_server, - SSLv23, - TLSv1_client, + SSLv23, */ + TLSv1_client = 10, TLSv1_server, TLSv1 }; @@ -114,7 +114,7 @@ public: * If the mode is not set, then the class automatically initializes * itself to the default mode. */ - int set_mode (int mode = ACE_SSL_Context::SSLv23); + int set_mode (int mode = ACE_SSL_Context::SSLv3); int get_mode (void) const; --- a/protocols/ace/INet/HTTP_Simple_exec.cpp +++ b/protocols/ace/INet/HTTP_Simple_exec.cpp @@ -35,7 +35,7 @@ usage (void) std::cout << "\t-p \t\tproxy port to connect to\n"; std::cout << "\t-o \t\tfile to write output to\n"; #if defined (ACE_HAS_SSL) && ACE_HAS_SSL == 1 - std::cout << "\t-v \t\tSSL version to use: 2, 23, 3\n"; + std::cout << "\t-v \t\tSSL version to use: '3' for SSLv3 or '1' for TLS 1.0\n"; std::cout << "\t-n \t\tno peer certificate verification\n"; std::cout << "\t-i \t\tignore peer certificate verification failures\n"; std::cout << "\t-c \t\tcertificate file (PEM format)\n"; @@ -78,10 +78,8 @@ parse_args (int argc, ACE_TCHAR *argv [] case 'v': { ACE_CString ver = ACE_TEXT_ALWAYS_CHAR (get_opt.opt_arg ()); - if (ver == "2") - ssl_mode = ACE_SSL_Context::SSLv2; - else if (ver == "23") - ssl_mode = ACE_SSL_Context::SSLv23; + if (ver == "1") + ssl_mode = ACE_SSL_Context::TLSv1; else if (ver != "3") // default mode { std::cerr << "ERROR: Invalid SSL mode [" << ver << "] specfied!" << std::endl; debian/patches/series0000664000000000000000000000035212224747277012052 0ustar reduce-doxygen-doc.diff prevent_doxygen_ace_manpages.diff 15-fix-lzo-flags.diff 16-ace-inet-pkgconfig-files.diff 20-versioned_libs.diff 35_disable_sslv2.diff 90-patch-mpc-basedir.diff 91-patch-dg-basedir.diff 92-default-ACE_ROOT.diff debian/patches/15-fix-lzo-flags.diff0000664000000000000000000000104412224735512014360 0ustar Description: hardcode LZO headers location Use LZO2 instead of LZO, and replace variable with Debian path Forwarded: not-needed Author: Thomas Girard Last-Update: 2011-02-13 --- a/MPC/config/lzo1.mpb +++ b/MPC/config/lzo1.mpb @@ -8,11 +8,11 @@ feature(lzo1) { LZO1_INCDIR $(LZO1_ROOT)/include } - includes += $(LZO1_INCDIR) + includes += /usr/include/lzo libpaths += $(LZO1_ROOT)/lib specific (prop:microsoft) { lit_libs += liblzo } else { - lit_libs += lzo + lit_libs += lzo2 } } debian/patches/prevent_doxygen_ace_manpages.diff0000664000000000000000000000034012224747277017367 0ustar --- pkg-ace.orig/bin/generate_doxygen.pl +++ pkg-ace/bin/generate_doxygen.pl @@ -44,7 +44,6 @@ } @ACE_DOCS = ('ace', - 'ace_man', 'ace_rmcast', 'ace_ssl', 'ace_qos', debian/patches/91-patch-dg-basedir.diff0000664000000000000000000000156312224735512015006 0ustar Description: fix path to DependencyGenerator $ACE_ROOT/bin/depgen.pl look up for modules under its base path, in $ACE_ROOT/bin/DependencyGenerator. . This patch sets base path dir to use $ACE_ROOT if defined (used when building ACE+TAO packages), or /usr/lib/ace if not. . TODO: do we still need this one? Forwarded: not-needed Author: Thomas Girard Last-Update: 2011-07-24 --- a/bin/depgen.pl +++ b/bin/depgen.pl @@ -19,11 +19,9 @@ use File::Spec; use File::Basename; -my($basePath) = $FindBin::RealBin; -if ($^O eq 'VMS') { - $basePath = File::Spec->rel2abs(dirname($0)) if ($basePath eq ''); - $basePath = VMS::Filespec::unixify($basePath); -} +my($aceroot) = $ENV{ACE_ROOT}; +my($basePath) = (defined $aceroot ? + $aceroot : '/usr/lib/ace') . '/bin'; unshift(@INC, $basePath . '/DependencyGenerator'); my($mpcroot) = $ENV{MPC_ROOT}; debian/tao-costime.docs0000664000000000000000000000004012224735512012263 0ustar TAO/orbsvcs/Time_Service/README debian/libtao-doc.examples0000664000000000000000000000001712224735517012753 0ustar TAO/examples/* debian/ace-netsvcs.docs0000664000000000000000000000010412224735512012253 0ustar PROBLEM-REPORT-FORM netsvcs/servers/README netsvcs/ACE-netsvcs.html debian/libtao-doc.doc-base.reference0000664000000000000000000000053212224735441014545 0ustar Document: libtao-reference Title: TAO online documentation Author: Douglas C. Schmidt and his research group Abstract: This set of documents provides help for developing applications using the ACE, TAO and CIAO libraries. Section: Programming/C++ Format: html Index: /usr/share/doc/libtao-doc/index.html Files: /usr/share/doc/libtao-doc/*.html debian/tao-rtevent.install0000664000000000000000000000002412224735417013033 0ustar usr/bin/tao_rtevent debian/tao_nsadd.sgml0000664000000000000000000001043712224735420012016 0ustar TAO_ORB_Options1"> tao_cosnaming1"> tao_nslist1"> tao_nsdel1"> tao_cosnaming"> ]> TAO_NSADD 1 &applname; Naming Service add utility. SYNOPSIS &applname; -ORBoptions OPTION DESCRIPTION &applname; adds or replaces new entry to the NamingService. &applname; requires a running NamingService. OPTIONS -ORBoptions The program follows the usual TAO ORB command line syntax. See &man_tao_orb_options;. --ns IOR Use NamingService IOR instead of default. --name name Register name in NamingService. --iorIOR IOR of the object to be registered. --newcontext --ctx If --ctx is NOT given; binds a final object. If both --ior and --ctx are specified; binds the existing\n" "naming context specified. If --ctx is given without --ior; binds a new naming context. --rebind Replace the existing bindings of the same type (object or context). --quiet Do not display all ID/Kinds found/created. --ctxsep character Set context separation character, defaults to "/". --kindsep character Set ID/Kind separation character, defaults to ".". SEE ALSO &seealso; AUTHOR Simon Massey <sma@prismtech.com> Carlos O'Ryan <coryan@uci.edu> Paul Caffrey <denginere@hotmail.com> debian/tao-cosnaming.install0000664000000000000000000000002612224735417013324 0ustar usr/bin/tao_cosnaming debian/libace-inet-6.0.3.install0000664000000000000000000000003112224747277013406 0ustar usr/lib/libACE_INet-*.so debian/ace-netsvcs.manpages0000664000000000000000000000002512224735420013116 0ustar debian/ace_netsvcs.1 debian/ace_netsvcs.sgml0000664000000000000000000001143512224735420012356 0ustar ]> ACE_NETSVCS 1 &applname; ACE network services driver. SYNOPSIS &applname; OPTION DESCRIPTION &applname; is a driver to start ACE network services. Currently, libnetsvcs provides: Naming Service, Time Service, Token Service, Server Logging Service, Client Logging Service, Logging Strategy Service. OPTIONS -f svc.conf Specifies a svc.conf configuration file name other than the default one. Can be specified multiple times to use multiple files. -d Turn on debugging mode. -n Explicitly disables the use of static services. This flag overrides the @a ignore_static_svcs parameter value. -p pathname Specifies a pathname which is used to store the process id. -s signal Specifies a signal number other than SIGHUP to trigger reprocessing of the configuration file(s). Ignored for platforms that do not have POSIX signals, such as Windows. -y Explicitly enables the use of static services. This flag overrides the @a ignore_static_svcs parameter value. -S directive Specifies a service directive string. Enclose the string in quotes and escape any embedded quotes with a backslash. This option specifies service directives without the need for a configuration file. -b Option to indicate that we should be a daemon. Note that when this option is used, the process will be daemonized before the service configuration file(s) are read. During daemonization, (on POSIX systems) the current directory will be changed to "/" so the caller should either fully specify the file names, or execute a @c chroot() to the appropriate directory. @sa ACE::daemonize(). -k point Specifies the rendezvous point to use for the ACE distributed logger. EXAMPLES &applname; -f /usr/share/ace-netsvcs/svc.conf Starts ACE network services using example configuration. &applname; -S 'dynamic Name_Server Service_Object * netsvcs:_make_ACE_Name_Acceptor() ""-p 20006""' Starts ACE Naming service using command line configuration. SEE ALSO &seealso; AUTHOR Douglas C. Schmidt<schmidt@cs.wustl.edu> debian/libace-htbp-6.0.3.install0000664000000000000000000000003112224747277013404 0ustar usr/lib/libACE_HTBP-*.so debian/tao-idl.install0000664000000000000000000000005012224735417012113 0ustar usr/bin/tao_idl usr/lib/ace/TAO/tao_idl debian/mpc-ace.manpages0000664000000000000000000000002112224735365012214 0ustar debian/mpc-ace.1 debian/libtao-2.0.3.install0000664000000000000000000000235212224747277012510 0ustar usr/lib/libTAO-*.so usr/lib/libTAO_AnyTypeCode-*.so usr/lib/libTAO_BiDirGIOP-*.so usr/lib/libTAO_CodecFactory-*.so usr/lib/libTAO_Codeset-*.so usr/lib/libTAO_Compression-*.so usr/lib/libTAO_CSD_Framework-*.so usr/lib/libTAO_CSD_ThreadPool-*.so usr/lib/libTAO_DynamicAny-*.so usr/lib/libTAO_DynamicInterface-*.so usr/lib/libTAO_EndpointPolicy-*.so usr/lib/libTAO_IFR_Client-*.so usr/lib/libTAO_IORInterceptor-*.so usr/lib/libTAO_IORManip-*.so usr/lib/libTAO_IORTable-*.so usr/lib/libTAO_Messaging-*.so usr/lib/libTAO_ObjRefTemplate-*.so usr/lib/libTAO_PI-*.so usr/lib/libTAO_PI_Server-*.so usr/lib/libTAO_PortableServer-*.so usr/lib/libTAO_RTCORBA-*.so usr/lib/libTAO_RTPortableServer-*.so usr/lib/libTAO_RTScheduler-*.so usr/lib/libTAO_SmartProxies-*.so usr/lib/libTAO_Strategies-*.so usr/lib/libTAO_TC-*.so usr/lib/libTAO_TC_IIOP-*.so usr/lib/libTAO_TypeCodeFactory-*.so usr/lib/libTAO_Utils-*.so usr/lib/libTAO_Valuetype-*.so usr/lib/libTAO_ImR_Client-*.so usr/lib/libTAO_DiffServPolicy-*.so usr/lib/libTAO_ZlibCompressor-*.so usr/lib/libTAO_Bzip2Compressor-*.so usr/lib/libTAO_LzoCompressor-*.so usr/lib/libTAO_IFR_BE-*.so usr/lib/libTAO_IDL_FE-*.so usr/lib/libTAO_IDL_BE-*.so usr/lib/libTAO_ZIOP-*.so usr/lib/libTAO_ETCL-*.so usr/lib/libTAO_Monitor-*.so debian/source/0000775000000000000000000000000012224735512010473 5ustar debian/source/format0000664000000000000000000000001412224735512011701 0ustar 3.0 (quilt) debian/tao-utils.manpages0000664000000000000000000000011612224735420012625 0ustar debian/tao_catior.1 debian/tao_nslist.1 debian/tao_nsadd.1 debian/tao_nsdel.1 debian/libtao-dev.links0000664000000000000000000000005212224735417012264 0ustar usr/include/tao usr/lib/ace/TAO/tao debian/libtao-foxresource-2.0.3.install0000664000000000000000000000004012224747277015042 0ustar usr/lib/libTAO_FoxResource-*.so debian/ace-gperf.docs0000664000000000000000000000004612224735512011676 0ustar PROBLEM-REPORT-FORM apps/gperf/README debian/tao_catior.sgml0000664000000000000000000000646412224735420012213 0ustar TAO_ORB_Options1"> tao_cosnaming1"> tao_cosnaming"> ]> TAO_CatIOR 1 &applname; Stringified IOR decoder and viewer. SYNOPSIS &applname; -ORBoptions -f file -n name DESCRIPTION &applname; takes in a file which contains the IOR and will then output the encoded information to stdout. Details of stringified IOR are described for example in page 33 of OMG CORBA specification, Part 2: Interoperability, v3.1.. Examples of IOR can be found in /usr/share/doc/tao-utils/ directory. OPTIONS -ORBoptions The program follows the usual TAO ORB command line syntax. See &man_tao_orb_options;. -f filename Takes in a file which contains the IOR and will then output the encoded information to stdout. -n named Displays decoded IOR of the named object registered at NamingService. EXAMPLES &applname; -f /usr/share/doc/tao-utils/test/test1.ior Displays decoded IOR from /usr/share/doc/tao-utils/test/test1.ior. SEE ALSO &seealso; AUTHOR Jeff Hopper<jrhopper@cts.com> Jason Cohen<jcohen@atl.lmco.com> debian/control0000664000000000000000000003562212224747277010621 0ustar Source: ace Section: devel Priority: optional Maintainer: Debian ACE+TAO maintainers Uploaders: Thomas Girard , Pau Garcia i Quiles , Marek Brudka DM-Upload-Allowed: yes Build-Depends: debhelper (>= 9), dpkg-dev (>= 1.16.2), libssl-dev (>= 0.9.7d), libxt-dev (>= 4.3.0), libfltk1.1-dev (>= 1.1.4), libqt4-dev (>= 4.4~rc1-4), tk-dev (>= 8.5), libfox-1.6-dev, zlib1g-dev, libzzip-dev, liblzo2-dev, docbook-to-man, bzip2, libbz2-dev Build-Depends-Indep: doxygen, graphviz Standards-Version: 3.9.2 Vcs-Git: git://anonscm.debian.org/pkg-ace/pkg-ace.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ace/pkg-ace.git;a=summary Homepage: http://www.cs.wustl.edu/~schmidt/ACE.html Package: mpc-ace Architecture: all Depends: ${perl:Depends}, ${misc:Depends} Recommends: make Replaces: libace-dev (= 5.6.3-4) Suggests: libace-dev, pkg-config Description: makefile, project, and workspace creator This package contains the Makefile, Project, and Workspace Creator (MPC) as distributed with the ACE toolkit. . MPC generates platform- and compiler-specific files to automate the compilation process. . The following programs are included: * mpc-ace: generates project files for a single target * mwc-ace: generates workspace files for a set of projects Package: libace-6.0.3 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Description: C++ network programming framework This package contains the ADAPTIVE Communication Environment (ACE) framework. . It provides platform independent C++ wrappers for all forms of IPC, thread- and process-management routines, and much more. . Moreover, it defines patterns for common communication tasks. * Reactor: handles event demultiplexing and dispatching * Proactor: for asynchronous I/O driven programs Package: libace-dev Architecture: any Section: libdevel Depends: libace-6.0.3 (= ${binary:Version}), ${misc:Depends} Suggests: libace-doc, libtao-dev, pkg-config Replaces: mpc-ace (<< 5.6.3-4) Description: C++ network programming framework - development files This package contains the header files and static library for the ACE framework. Package: libace-doc Architecture: all Section: doc Depends: ${misc:Depends} Suggests: libace-dev Recommends: doc-base Description: C++ network programming framework - documentation This package contains the ACE overview documentation, tutorials, examples, and information regarding upstream development. Package: libace-ssl-6.0.3 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Description: ACE secure socket layer library This package contains wrappers that integrate the OpenSSL library in the ACE framework. Package: libace-ssl-dev Architecture: any Section: libdevel Depends: libace-ssl-6.0.3 (= ${binary:Version}), libace-dev (= ${binary:Version}), libssl-dev (>= 0.9.7d), ${misc:Depends} Description: ACE secure socket layer library - development files This package contains the header files and static library for the ACE SSL library. Package: libace-rmcast-6.0.3 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Description: ACE reliable multicast library The RMCast library is a reliable source-ordered multicast protocol implementation. . It uses sequence numbers on messages to ensure ordering, loss detection, and suppression of duplicates. Package: libace-rmcast-dev Architecture: any Section: libdevel Depends: libace-rmcast-6.0.3 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} Description: ACE reliable multicast library - development files This package contains the header files and static library for the ACE reliable multicast library. Package: libace-tmcast-6.0.3 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Description: ACE transactional multicast library The TMCast library is a transactional multicast protocol implementation. . Each message is delivered to multicast group members as a transaction: an atomic, consistent, and isolated action. Package: libace-tmcast-dev Architecture: any Section: libdevel Depends: libace-tmcast-6.0.3 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} Description: ACE transactional multicast library - development files This package contains the header files and static library for the ACE transactional multicast library. Package: libace-htbp-6.0.3 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Description: ACE protocol over HTTP tunneling library The HTTP Tunneling, Bidirectional, Protocol (HTBP) library enables the writing of stream-based protocols over HTTP. . This allows clients behind a firewall to establish a connection with outbound servers using the HTTP protocol. Package: libace-htbp-dev Architecture: any Section: libdevel Depends: libace-htbp-6.0.3 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} Description: ACE protocol over HTTP tunneling library - development files This package contains the header files and static library for the ACE HTBP library. Package: libace-inet-6.0.3 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Description: ACE Inet protocol library This package provides an ACE addon library for clients (and possibly servers at some point) using Inet protocols, such as HTTP or FTP. Package: libace-inet-dev Architecture: any Section: libdevel Depends: libace-inet-6.0.3 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} Description: ACE Inet protocol library - development files This package contains the header files and static library for the ACE Inet protocol library. Package: libace-inet-ssl-6.0.3 Architecture: any Section: libs Depends: libace-inet-6.0.3, libace-ssl-6.0.3, ${shlibs:Depends}, ${misc:Depends} Description: ACE SSL-enabled Inet protocol library This package provides an ACE addon library for clients (and possibly servers at some point) using Inet protocols which support SSL, such as HTTPS or FTPS. Package: libace-inet-ssl-dev Architecture: any Section: libdevel Depends: libace-inet-ssl-6.0.3 (= ${binary:Version}), libace-inet-dev (= ${binary:Version}), libace-ssl-dev (= ${binary:Version}), ${misc:Depends} Description: ACE SSL-enabled Inet protocol library - development files This package contains the header files and static library for the ACE SSL-enabled Inet protocol library. Package: ace-gperf Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Breaks: gperf-ace (<< 5.7.7-1) Replaces: gperf-ace (<< 5.7.7-1) Description: ACE perfect hash function generator ace_gperf is the ACE version of gperf. . Both ace_gperf and gperf were written by the same author, and have basically the same options and functionality. ace_gperf simply takes advantage of some of the features provided by the ACE library. Package: gperf-ace Architecture: all Section: oldlibs Priority: extra Depends: ace-gperf, ${misc:Depends} Description: ACE perfect hash function generator (transitional package) This package is a transitional package to ace-gperf. . It can be safely removed after installation. Package: libacexml-6.0.3 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Description: ACE SAX based XML parsing library This package provides interfaces for XML parsing based on Simple API for XML (SAX) 2.0, defined by David Megginson. This is an event-driven parsing approach. . ACEXML is a small footprint and portable library. It does not validate XML documents and supports only Unicode encoding. Package: libacexml-dev Architecture: any Section: libdevel Replaces: libace-dev (<< 5.7.7-4) Depends: libacexml-6.0.3 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} Description: ACE SAX based XML parsing library - development files This package contains the header files and static library for the ACE XML parsing library. Package: libkokyu-6.0.3 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Suggests: libtao-2.0.3, libtao-orbsvcs-2.0.3 Description: ACE scheduling and dispatching library Kokyu is a library designed to provide flexible scheduling and dispatching services. . Currently it provides real-time scheduling and dispatching services for TAO real-time CORBA Event Service. Package: libkokyu-dev Architecture: any Section: libdevel Depends: libkokyu-6.0.3 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} Description: ACE scheduling and dispatching library - development files This package contains the header files and static library for the ACE scheduling and dispatching library. Package: libace-qtreactor-6.0.3 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Description: ACE-GUI reactor integration for Qt Recognizing the need to write reactor-based GUI applications, the ACE community has created several reactor extensions for use with X Window System. Each of these extends the ACE_Select_Reactor to work with a specific toolkit. By using these reactors, your GUI application can remain single threaded yet still respond to both GUI events, such as button presses, and your own application events. . The ACE_QtReactor extends both the ACE_Select_Reactor and the Trolltech Qt library's QObjects class. Rather than using select(), the QtWaitForMultipleEvents() function is used. Package: libace-qtreactor-dev Architecture: any Section: libdevel Depends: libace-qtreactor-6.0.3 (= ${binary:Version}), libace-dev (= ${binary:Version}), libqt4-dev, ${misc:Depends} Description: ACE-GUI reactor integration for Qt - development files This package contains header files and static library for the ACE-Qt reactor integration. Package: libace-xtreactor-6.0.3 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Description: ACE-GUI reactor integration for Xt Recognizing the need to write reactor-based GUI applications, the ACE community has created several reactor extensions for use with X Window System. Each of these extends the ACE_Select_Reactor to work with a specific toolkit. By using these reactors, your GUI application can remain single threaded yet still respond to both GUI events, such as button presses, and your own application events. . The ACE_XtReactor extends both the ACE_Select_Reactor and the X Toolkit library function XtWaitForMultipleEvents(). Package: libace-xtreactor-dev Architecture: any Section: libdevel Depends: libace-xtreactor-6.0.3 (= ${binary:Version}), libace-dev (= ${binary:Version}), libxt-dev (>= 4.3.0), ${misc:Depends} Description: ACE-GUI reactor integration for Xt - development files This package contains header files and static library for the ACE-Xt reactor integration. Package: libace-tkreactor-6.0.3 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Description: ACE-GUI reactor integration for Tk Recognizing the need to write reactor-based GUI applications, the ACE community has created several reactor extensions for use with X Window System. Each of these extends the ACE_Select_Reactor to work with a specific toolkit. By using these reactors, your GUI application can remain single threaded yet still respond to both GUI events, such as button presses, and your own application events. . The ACE_TkReactor provides reactor functionality around the popular Tcl/Tk library. The underlying Tcl/Tk method used is Tcl_DoOneEvent(). Package: libace-tkreactor-dev Architecture: any Section: libdevel Depends: libace-tkreactor-6.0.3 (= ${binary:Version}), libace-dev (= ${binary:Version}), tk-dev (>= 8.5), ${misc:Depends} Description: ACE-GUI reactor integration for Tk - development files This package contains header files and static library for the ACE-Tk reactor integration. Package: libace-flreactor-6.0.3 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Description: ACE-GUI reactor integration for Fl Recognizing the need to write reactor-based GUI applications, the ACE community has created several reactor extensions for use with X Window System. Each of these extends the ACE_Select_Reactor to work with a specific toolkit. By using these reactors, your GUI application can remain single threaded yet still respond to both GUI events, such as button presses, and your own application events. . The ACE_FlReactor integrates with the FastLight toolkit's Fl::wait() method. Package: libace-flreactor-dev Architecture: any Section: libdevel Depends: libace-flreactor-6.0.3 (= ${binary:Version}), libace-dev (= ${binary:Version}), libfltk1.1-dev (>= 1.1.4), ${misc:Depends} Description: ACE-GUI reactor integration for Fl - development files This package contains header files and static library for the ACE-Fl reactor integration. Package: libace-foxreactor-6.0.3 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Description: ACE-GUI reactor integration for FOX Recognizing the need to write reactor-based GUI applications, the ACE community has created several reactor extensions for use with X Window System. Each of these extends the ACE_Select_Reactor to work with a specific toolkit. By using these reactors, your GUI application can remain single threaded yet still respond to both GUI events, such as button presses, and your own application events. . The ACE_FoxReactor integrates with the FOX toolkit. Package: libace-foxreactor-dev Architecture: any Section: libdevel Depends: libace-foxreactor-6.0.3 (= ${binary:Version}), libace-dev (= ${binary:Version}), libfox-1.6-dev, ${misc:Depends} Description: ACE-GUI reactor integration for FOX - development files This package contains header files and static library for the ACE-FOX reactor integration. Package: ace-netsvcs Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: ACE network service implementations ACE network services provide reusable components for common distributed system tasks such as logging, naming, locking, and time synchronization. . This package contains driver programs and example configuration files to link the various ACE network services together, either statically or dynamically, and form complete server programs. Package: libnetsvcs-6.0.3 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Description: ACE network service implementations - libraries ACE network services provide reusable components for common distributed system tasks such as logging, naming, locking, and time synchronization. . This package contains runtime libraries for ACE network services. Package: libnetsvcs-dev Architecture: any Section: libdevel Depends: libnetsvcs-6.0.3 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} Description: ACE network service implementations - development files ACE network services provide reusable components for common distributed system tasks such as logging, naming, locking, and time synchronization. . This package contains header files and static library for the ACE network services library. debian/libace-xtreactor-6.0.3.install0000664000000000000000000000003612224747277014467 0ustar usr/lib/libACE_XtReactor-*.so debian/libkokyu-dev.links0000664000000000000000000000004712224735417012647 0ustar usr/include/Kokyu usr/lib/ace/Kokyu debian/tao-idl.manpages0000664000000000000000000000002612224735512012237 0ustar TAO/TAO_IDL/tao_idl.1 debian/tao-ft.install0000664000000000000000000000013012224735434011752 0ustar usr/bin/tao_fault_detector usr/bin/tao_fault_notifier usr/bin/tao_ft_replicationmanager debian/README.source0000664000000000000000000000243612224735512011357 0ustar = Compiling ACE+TAO Debian packages = * ACE+TAO-src-.tar.bz2 is retrieved from: http://download.dre.vanderbilt.edu/previous_versions/ The -src version does not contain pre-generated Makefiles. They are regenerated in the buid process. -- Thomas Girard , Sun, 24 Jul 2011 18:47:59 +0200 = New releases = When preparing a new release, there are several things to remember: - Update patch 34-bts386713 (change soversions) - Regenerate the list of include files for libace-inet-dev and libace-inet-ssl-dev: From debian/tmp: $ find . -type f | grep -vi https | grep -vi ssl --> These go to libace-inet-dev The ones matching HTTPS or SSL go in libace-inet-ssl-dev.install: usr/include/ace/INet/*SSL* usr/include/ace/INet/*HTTPS* But that might need updating if ACE_INet_SSL starts supporting FTPS or others libace-inet-ssl-dev requires libace-inet-dev Also, make sure none of the files in libace-inet-dev include anything from libace-inet-ssl-dev. Test with: From debian/tmp/usr/include/ace/INet: $ find . -type f | grep -vi https | grep -vi ssl | xargs -I {} grep -Hi "include.*ssl" $ find . -type f | grep -vi https | grep -vi ssl | xargs -I {} grep -Hi "include.*https" (both should return nothing) debian/libnetsvcs-6.0.3.install0000664000000000000000000000005212224747277013411 0ustar ../../netsvcs/lib/libnetsvcs-*.so usr/lib debian/tao-costrading.install0000664000000000000000000000002712224735417013504 0ustar usr/bin/tao_costrading debian/libace-dev.docs0000664000000000000000000000010312224735512012032 0ustar README VERSION AUTHORS docs/FAQ PROBLEM-REPORT-FORM THANKS VERSION debian/tao-cosconcurrency.docs0000664000000000000000000000004712224735512013666 0ustar TAO/orbsvcs/Concurrency_Service/README debian/ace-gperf.info0000664000000000000000000000003212224735512011674 0ustar apps/gperf/ace_gperf.info debian/tao_ifr0000775000000000000000000000017112224735512010543 0ustar #!/bin/sh ACE_ROOT=/usr/lib/ace; export ACE_ROOT; TAO_ROOT=$ACE_ROOT/TAO; export TAO_ROOT; exec $TAO_ROOT/tao_ifr "$@" debian/tao-cosevent.docs0000664000000000000000000000004412224735512012452 0ustar TAO/orbsvcs/CosEvent_Service/README debian/libacexml-dev.links0000664000000000000000000000005112224735417012751 0ustar usr/include/ACEXML usr/lib/ace/ACEXML debian/tao-ftrtevent.install0000664000000000000000000000013012224735374013365 0ustar usr/bin/ftrt_eventservice usr/bin/ftrtec_factory_service usr/bin/ftrtec_gateway_service debian/TODO0000664000000000000000000000111112224735512007655 0ustar = Misc = * default tao_idl lookup path? * current IDL should be in orvsvcs/orbsvcs * see current bugs: o package websvcs library? o create man pages for ace/tao binaries * rewrite the patch to load TAO libraries by SONAME and RFC it * install .mpc files? * What about REACTOR_NOTIFICATION_QUEUE? * fltk and gl * subj using PROBLEM-REPORT-FORM for reportbug? = CIAO = * to restore? * autoconf support is missing = autoconf = * to restore? = Hurd = * Test programs = Documentation = * Build location leaks in generated documentation. * ACEXML doc is not packaged.debian/libace-doc.examples0000664000000000000000000000001312224735517012714 0ustar examples/* debian/libace-tmcast-dev.docs0000664000000000000000000000003412224735512013326 0ustar protocols/ace/TMCast/README debian/platform_macros.GNU0000664000000000000000000000103412224735441012735 0ustar # $Id$ debug = 0 optimize = 1 inline = 1 ssl = 1 xt = 1 tk = 1 fl = 1 fox = 1 qt4 = 1 ace_qt4reactor = 1 bzip2 = 1 lzo1 = 1 zlib = 1 # Work-around #593225 ARMEL_TARGET := $(shell echo '__ARMEL__' | $(CC) -E - | tail -n 1) ifeq ($(ARMEL_TARGET),1) no_hidden_visibility = 1 endif include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU PLATFORM_FOX_CPPFLAGS=-I/usr/include/fox-1.6 PLATFORM_FOX_LIBS=-lFOX-1.6 debian/tao-coslifecycle.install0000664000000000000000000000003112224735417014006 0ustar usr/bin/tao_coslifecycle debian/libace-htbp-dev.install0000664000000000000000000000011212224735420013501 0ustar usr/include/ace/HTBP usr/lib/libACE_HTBP.so usr/lib/pkgconfig/ACE_HTBP.pc debian/libace-rmcast-6.0.3.install0000664000000000000000000000003312224747277013742 0ustar usr/lib/libACE_RMCast-*.so debian/mpc-ace.docs0000664000000000000000000000003712224735512011352 0ustar MPC/docs/README MPC/docs/USAGE debian/tao-tls.install0000664000000000000000000000013312224735417012147 0ustar usr/bin/tao_tls_basic usr/bin/tao_tls_event usr/bin/tao_tls_notify usr/bin/tao_tls_rtevent debian/tao-cosconcurrency.install0000664000000000000000000000003312224735417014403 0ustar usr/bin/tao_cosconcurrency debian/changelog0000664000000000000000000013551312224750127011054 0ustar ace (6.0.3+dfsg-0.2) unstable; urgency=low * NMU to rebuild with up-to-date tool chain (closes: #723856) -- Barak A. Pearlmutter Tue, 08 Oct 2013 10:24:20 +0100 ace (6.0.3+dfsg-0.1) unstable; urgency=low * NMU with maintainers blessing. * Remove upstream files with nonfree licence (closes: #697848) or without source (closes: #697847): - repack the orig tarball by removing: bin/LabVIEW_RT/*.exe examples/{C++NPv2,C++NPv1,APG}/ TAO/ - debian/control: drop all packages named *tao* - debian/rules: drop everything related to tao - remove all hunks applying to TAO files in patch reduce-doxygen-doc.diff - drop patch 34-bts386713.diff since it applies only to TAO files. - debian/copyright: remove copyright entries of TAO/, and of the directories under examples/ that have been removed. * Bump version in build-dependency on debhelper to >=9 since we are using debhelper compatibility level 9. -- Ralf Treinen Wed, 23 Jan 2013 21:27:40 +0100 ace (6.0.3-5) unstable; urgency=low * debian/control: o define Build-Depends-Indep: for documentation generation. o Build-Depends on dpkg-dev >= 1.16.2 to have dpkg-buildpackage -B correctly invoke build-arch then binary-arch. Closes: #657844. * debian/libace-dev.README.Debian: mention how to make ACE Service Configuration work in Debian. Closes: #656040. -- Thomas Girard Fri, 30 Mar 2012 20:03:40 +0200 ace (6.0.3-4) unstable; urgency=low * Remove work-around for arm now that g++-4.6 ICE is fixed. Closes: #653642, #654743. * Really ensure doxygen is not being run when invoking build-arch. Closes: #657844. -- Thomas Girard Sat, 04 Feb 2012 17:24:25 +0100 ace (6.0.3-3) unstable; urgency=low * Build with g++-4.4 on armel to work-around #644722. Closes: #644826. Thanks to Peter Green for the report and work-around investigation. * debian/lib{ace,tao}-dev.install, debian/tao-utils.install: perform brace expansion instead of letting debhelper do it "due to an accident". Helped removing no longer needed expansions. * debian/control: move transitional packages to section oldlibs, priority extra, as per lintian warning recommendation. -- Thomas Girard Wed, 28 Dec 2011 10:46:18 +0100 ace (6.0.3-2) unstable; urgency=low * Upload to unstable. * Remove the build part in build %: make rule. GNU make 3.82 doesn't like it. Should fix the FTBFS seen on experimental/amd64 where make 3.82 is installed. * debian/rules: prevent long generation of doxygen documentation in arch-dep build by defining binary-arch: and binary-indep: targets. This requires switching to debhelper level 9. * debian/rules: overriding dh_fixperm for needed packages only. Closes: #636028. * debian/*.examples: move examples here. * debian/ace-netsvcs.doc-base: remove extra space at end of document field. -- Thomas Girard Sat, 30 Jul 2011 21:38:07 +0200 ace (6.0.3-1) experimental; urgency=low [ Thomas Girard ] * Drop obsolete patch multiarch.dpatch. * Really install NEWS file with libace-ssl. * Convert to format 3.0 (quilt): o Drop dpatch dependency o Do not repackage upstream tarball o rework patches 90 and 91 so that they can be applied before building * Convert debian/rules to debhelper level 8. * Convert patches to DEP3 format. * debian/watch: use ACE+TAO-src-*.tar.bz2 since we don't package CIAO. * Port to GNU/Hurd. * Make tao-idl and tao-ifr depend on g++; we need cpp for preprocessing. * Change descriptions to match new binary names. * Replace Conflicts:/Replaces: with Breaks:/Replaces:, following lintian recommendation. * Register ace-netsvcs documentation with doc-base (again, thanks lintian). [ Pau Garcia i Quiles ] * New upstream patch release. Closes: #628572. * Drop patch 11-promote-QtResource-to-qt4 -- Thomas Girard Wed, 27 Jul 2011 15:34:32 +0200 ace (6.0.1-3) unstable; urgency=low * Convert to format 3.0 (quilt): o Drop dpatch dependency o Do not repackage upstream tarball * Convert debian/rules to debhelper level 8. * Port to GNU/Hurd. * debian/watch: use ACE+TAO-src-*.tar.bz2 since we don't package CIAO. * debian/patches/multiarch.dpatch: change detection of librt.so to use getconf so that it does not break with multiarch locations. Closes: #629657. * debian/NEWS.Debian: mention that SSL v2 was removed from Debian packages. * Enhance package descriptions. Thanks to Gerfried Fuchs for the report, and to Justin B Rye from debian-l10n-english@ for his changes. Closes: #599549. -- Thomas Girard Mon, 20 Jun 2011 21:05:52 +0200 ace (6.0.1-2) unstable; urgency=low [ Thomas Girard ] * Import into git. * debian/control: change Vcs-* accordingly. * Restore lost changelog entries, thanks to git! * Add DM-Upload-Allowed: yes to debian/control. * Bump Standards-Version: to 3.9.2. [ Pau Garcia i Quiles ] * Disable SSLv2 by adding patch 35_disable_sslv2 (Closes: #622074) -- Thomas Girard Sun, 01 May 2011 13:02:17 +0200 ace (6.0.1-1) unstable; urgency=low [ Pau Garcia i Quiles ] * New upstream release * Drop patch 12-add-DESTDIR-to-MPC (applied upstream) * Drop patch 13-add-QtReactor-export (applied upstream) * Drop patch 14-fix-tcl-flags (applied upstream) * Drop patch 16-fix-pidl-install (applied upstream) * Update patch 11-promote-QtResource-to-qt4 * Update patch 15-fix-lzo-flags * Update patch 34-bts386713 * Require debhelper >= 7 (it was already required, in practice) * Register documentation with doc-base * Explicitly set source format 1.0 until we move to 3.0 * Package ACE_INet and ACE_INet_SSL [ Thomas Girard ] * Build-depend on Tcl/Tk >= 8.5. -- Pau Garcia i Quiles Sun, 20 Feb 2011 16:33:13 +0100 ace (6.0.0-1) experimental; urgency=low * New upstream release: o use new make install target. o remove generator_pkgconfig.sh, no longer needed. o new binary renaming: - LoadManager => tao_loadmanager - LoadMonitor => tao_loadmonitor - ImplRepo_Service => tao_imr_locator - ImR_Activator => tao_imr_activator - IFR_Service => tao_ifr_service - Fault_Detector => tao_fault_detector - Fault_Notifier => tao_fault_notifier - Scheduling_Service => tao_cosscheduling - Dump_Schedule => tao_dump_schedule o remove libACE_gperf_lib. o remove patches that were merged upstream: - 11-create-ace_qt4reactor-mpb.dpatch - 12-create-config_kfreebsd.dpatch - 16-rename-tao-programs.dpatch - 24-add-missing-headers.dpatch - 25-remove-duplicate-files.dpatch - 47-change-netsvcs.dpatch - 48-fix-doxygen-cross-links.dpatch o remove useless patches: - 10-fix-prj-install.dpatch - 19-gcc43.dpatch o rework existing patches: - 20-versioned_libs.dpatch, for versioned_so=2 - 34-bts386713.dpatch - 90-patch-mpc-basedir.dpatch o new patches or scripts: - 12-add-DESTDIR-to-MPC.dpatch, to add and use DESTDIR in make install - 13-add-QtReactor_export.h.dpatch, to add a missing header in libace-qtreactor-dev package. - 16-fix-pidl-install.dpatch, to add missing .pidl files. - fix_doxygen.sh, to regenerate the patch for Doxygen reduction. * Bump Standards-Version: to 3.9.1. -- Thomas Girard Thu, 06 Jan 2011 07:39:04 +0100 ace (5.7.7-4) unstable; urgency=high [ Marek Brudka ] * Synchronized *.pc with *.so and created transitional tags. Closes: #598169 -- Marek Brudka Mon, 27 Sep 2010 20:36:00 +0200 ace (5.7.7-3) unstable; urgency=low [ Marek Brudka ] * Configuration file for KFreeBSD created. Closes: #591586. * Restored pkgconfig files. Closes: #591610. * Provided manpages for tao_catior, tao_nslist, tao_nsdel, tao_nsadd, ace_netsvcs. [ Thomas Girard ] * Disable -fvisibility=hidden on armel since it does not seem to work on that platform. Closes: #593225. -- Thomas Girard Tue, 07 Sep 2010 20:04:20 +0200 ace (5.7.7-2) unstable; urgency=low * Rebuild with sid tk-dev build-dependency. Closes: #590512. -- Thomas Girard Mon, 02 Aug 2010 23:49:01 +0200 ace (5.7.7-1) unstable; urgency=low [ Thomas Girard ] * Add Marek to Uploaders: field. * Remove dependencies on autotools; these are no longer needed now that we have agreed to move back to the traditional compilation method. * Add bzip2 and lzo ZIOP implementation. * New patch: 20-versioned_libs.dpatch, to generate libraries with names following libACE-5.7.7.so pattern instead of libACE.so.5.7.7. * Rename binaries and packages to follow what is used in RPMs. * Move $ACE_ROOT to /usr/lib/ace. [ Marek Brudka ] * New upstream release: o add libACE_gperf, libACE_ETCL and libACE_Monitor_Control to libace o add headers and libraries for Monitor, ZIOP, ETCL to libtao package o renamed gperf-ace to ace_gperf to follow the upstream convention o renamed utilities (ns{add,del,list} to tao_ns{add,del,list}) in tao-utils to follow the upstream changes * Change compilation back to traditional ACE+TAO build method: o adapt existing Debian build mechanism o remove patches no longer needed because of this switch o use MPC generated makefiles o install build result using MPC/prj_install.pl and .ins files o temporarily excluded logWalker from build * New patch: 10-fix-prj-install to work-around a problem installing files * Added PerlACE to mpc-ace. Closes: #522557 * Created patch to reduce the size of doxygen doc. Closes: #562164 * Created patch to fix cross references in doxygen tags * Created libnetsvcs packages. Closes: #466137. Addresses: LP#185285 * Moved IDL fiels from /usr/include into /usr/share/idl [ Pau Garcia i Quiles ] * New upstream release * Add dependency on ${misc:Depends} * Add new libraries and update patch 34-bts386713 accordingly * Update patch 02-qt4 (partially fixed upstream) * Drop patch 05-autoconf-fox (fixed upstream) * Drop patch 06-fix-kokyu-mpc (fixed upstream) * Drop patch 07-autoconf-fix-gperf (fixed upstream) * Drop patch 08-fix-perl-shebang (fixed upstream) * Drop patch 10-fix-fox-resource-export (fixed upstream) * Drop patch 11-fix-fox-reactor.dpatch (fixed upstream) * Update patch 12-fix-fox-include * Drop patch 13-fix-fox-errors (fixed upstream except for the #include, which I have now merged in 12-fix-fox-include) * Drop patch 14-autoconf-tao (fixed upstream) * Drop patch 15-fix-fltk-include (fixed upstream) * Drop patch 17-protect-mpc-path (fixed upstream) * Drop patch 18-fix-bswap-detection (fixed upstream) * Update patch 19-gcc43 * Drop patch 20-fix-iostream-detection (fixed upstream) * Drop patch 22-remove-Ge-doc (fixed upstream) * Drop patch 23-add-sh-shebang (fixed upstream) * Update patch 24-add-missing-headers (WORK IN PROGRESS) * Update patch 34-bts386713 * Drop patch 49-missing-template (fixed upstream) * Update patch 90-patch-mpc-basedir * Update patch 91-patch-dg-basedir * Add patch 93-hack-to-fix-libtoolize * Add patch 94-build-crosscompile * Add patch 95-build-ace-for-tao * Add patch 96-build-athena3d * Remove DH_COMPAT definition from the debian/rules file, it's already in debian/compat * Fix fox-config location, detection method has changed since 5.6.3 -- Thomas Girard Sun, 23 May 2010 16:58:42 +0200 ace (5.6.3-6) unstable; urgency=low [ Thomas Girard ] * Remove obsolete maintainers: - Konstantinos Margaritis - Brian Nelson Closes: #521487. * Bump Standards-Version: to 3.8.3. * Remove erroneous #define ACE_SCANDIR_CMP_USES_CONST_VOIDPTR in config.h; causing diagnostics to FTBFS. Closes: #552899. * Remove extra ACLOCAL_AMFLAGS from already existing Makefile.am; causing recent aclocal to abort. Thanks to Pau Garcia i Quiles for the patch. Closes: #518735. * Add README.source. * Add Pau Garcia i Quiles to the list of maintainers. * Fix many issues spotted by lintian. [ Pau Garcia i Quiles ] * Add new patches: - Remove duplicate files from .mpc files so that Makefile.am files do not have duplicates - Run autoupdate and autoreconf in the ACE and TAO directories in order to update from libtool 1.5 (what upstream uses) to libtool 2.2 -- Thomas Girard Sun, 13 Dec 2009 11:47:50 +0100 ace (5.6.3-5) unstable; urgency=low * Do not ship MPC config files in both mpc-ace and libace-dev packages; they're meant to be only in mpc-ace. Make mpc-ace Replaces: the bogus previous upload. Closes: #484718. * Bump Standards-Version: to 3.8.0. -- Thomas Girard Fri, 13 Jun 2008 21:52:28 +0000 ace (5.6.3-4) unstable; urgency=low * Add the following missing programs to libace-dev: o $ACE_ROOT/bin/generate_export_file.pl o $ACE_ROOT/bin/split-cpp o $ACE_ROOT/bin/g++dep o $ACE_ROOT/bin/add_rel_link.sh * Move DependencyGenerator from mpc-ace to libace-dev. * New patch, 22-remove-Ge-doc.dpatch, to remove documentation for tao_idl -Ge flag that no longer works. Thanks to Pascal Giard for reporting this. * Remove PACKAGE_* definitions from /usr/include/ace/config.h. Thanks to Pascal Giard for reporting this. * Remove pre-etch Conflicts: and Replaces: information. * Add missing headers found with cmp-installation.sh. Closes: #481088. -- Thomas Girard Sat, 24 May 2008 15:47:01 +0000 ace (5.6.3-3) unstable; urgency=low * Pass full path to fox-config-1.6 instead of trying to detect fox-config since fox-config is an alternative. Should fix multiple FTBFS. * Enable IPv6 again. Disabling it was a mistake: it does work. But on an IPv4 only host one need to specify the end-point to use, e.g. : Naming_Service -ORBEndPoint iiop://localhost:1234 -- Thomas Girard Thu, 24 Apr 2008 18:27:07 +0000 ace (5.6.3-2) unstable; urgency=low * Add missing libfox-1.6-dev build dependency. Thanks to Bastian Blank for the report. Closes: #476822. * Build depend on libqt4-dev (>= 4.4~rc1-4) to fix FTBFS. Thanks to Martin Zobel-Helas for the report and to Sune Vuorela for the fix. Closes: #476505. * Add platform_macros.GNU.in and have autotools handle it so that it's possible to ship rules.*.GNU. Closes: #469843, #469845. * Remove doxygen-generated files we don't need. * (Build-)Depend on tk-dev instead of tk8.4-dev. * Rework debian/patches/05-autoconf-fox.dpatch not to link against too many libs. * Restore doxygen build-dependency. -- Thomas Girard Tue, 22 Apr 2008 18:23:46 +0000 ace (5.6.3-1) unstable; urgency=low * New upstream release: o missing os_include/os_byteswap.h is included. Closes: #469844. * Upload to unstable. * New packages: libace-foxreactor and libtao-foxresource, integrating with the FOX toolkit. * Build doxygen again. * Rewrite debian/copyright, following proposal from: http://wiki.debian.org/Proposals/CopyrightFormat * Add a watch file. -- Thomas Girard Sat, 12 Apr 2008 17:10:14 +0000 ace (5.6.2-1) experimental; urgency=low * New upstream release. * Generate .am files instead of patching them; hence drop: o patches/02-tao-sonames-release-am.dpatch o tao-sonames-release-am.sh * Fix DEB_BUILD_OPTIONS=noopt. * Add zlib1g-dev and libzzip-dev build dependencies. * Enable symbol visibility. * Manually add missing some autoconf tests to reduce differences against regular ACE build method. * Do not generate doxygen; it fails now. -- Thomas Girard Sun, 06 Jan 2008 21:05:37 +0100 ace (5.5.9-1) experimental; urgency=low * New upstream release. We now use the -src.tar.bz2 tarball, hence: o generate autotools stuff at compile time o huge patches/06-bootstrap is dropped * Fix broken libtao-tkresource package. * Drop no longer needed patches: o 03-compile-lifecycle o 04-compile-ftrt o 07-ace-tao-ssliop-refcount * New patches: o 02-qt4 to switch to Qt4 o 02-fltk-no-gl to avoid linking with libfltk_gl o 03-g++-new-throws to prevent autoconfiguration from eating all memory testing whether std::bad_alloc is thrown * Disable patch 20-check-_REENTRANT; it's not needed when using autotools method. Closes: #420216. * Update patch 34-bts386713. * Use debian/compat instead of DH_COMPAT. * Drop no longer needed dpkg-dev tightened build-dependency since it is available in etch. * Generate doxygen documentation. Closes: #391011. * Enable ACE reactor notification queue. * Move $ACE_ROOT/bin/MakeProjectCreator/config files into libace-dev. * Install $TAO_ROOT/MPC files into libtao-dev. -- Thomas Girard Tue, 17 Jul 2007 22:50:36 +0200 ace (5.5.6-2) experimental; urgency=low * debian/control: fix broken Conflicts: fields. Package split for libtao-orbsvcs happened in libtao-orbsvcs1.4.7c2a 5.4.7-11 and this should not be changed. -- Thomas Girard Fri, 23 Mar 2007 18:38:41 +0000 ace (5.5.6-1) experimental; urgency=low Thomas Girard: * New upstream release. Closes: #381647. * Switch to the autotools method. Consequences: o CIAO packages are dropped for now o static libraries are removed as well o IPv6 is disabled again * Drop obsolete patches and scripts. * We no longer ship TAO_ORB_Options.1 in libtao-orbsvcs. * debian/patches/01-change-tao-sonames.dpatch: enable TAO_VERSION_NAME propagation from configure, and use it for TAO libraries. * debian/patches/02-tao-sonames-release-am.dpatch: diff on Makefile.am after application of the 01-change-tao-sonames patch. * debian/patches/03-compile-lifecycle.dpatch: enables LifeCycle compilation. * debian/patches/04-compile-ftrt.dpatch: enables FTRT_EventService compilation. * debian/patches/07-ace-tao-ssliop-refcount.dpatch: fix ssliop reference counting problem. Konstantinos Margaritis: * changed URL in copyright to new one. -- Thomas Girard Thu, 15 Mar 2007 22:12:29 +0000 ace (5.4.7-13) unstable; urgency=low * Rename packages: o libace5.4.7c2a to libace5.4.7ldbl (Closes: #430244) o libtao1.4.7c2a to libtao1.4.7ldbl (Closes: #430307) for ldbl128 transition. * Use debian/compat instead of DH_COMPAT. -- Thomas Girard Thu, 06 Sep 2007 09:52:34 +0000 ace (5.4.7-12) unstable; urgency=low * debian/control: tao-naming recommends tao-utils (Closes: #393032). * debian/libtao-dev.install: add libTAO.so symlink (Closes: #396303). * debian/patches/20-check-_REENTRANT.dpatch: do not automatically define _REENTRANT (Closes: #380739). -- Thomas Girard Sun, 5 Nov 2006 11:14:00 +0100 ace (5.4.7-11) unstable; urgency=low * debian/control: package HTBP, the protocol over HTTP tunneling library. * debian/control: split libace into libace + libace-ssl. * debian/control: move binaries in their own tao-* packages. * debian/patches/34-bts386713.dpatch: dlopen() TAO libraries using their full name (Closes: #386713). * debian/generate_pkgconfig.sh: generate .pc files (Closes: #367480). -- Thomas Girard Sat, 23 Sep 2006 15:02:12 +0200 ace (5.4.7-10) unstable; urgency=low * debian/rules: fix and honor DEB_BUILD_OPTIONS. * debian/libace-dev.install: drop QoS header files as QoS in not compiled in. * debian/*.install: fix empty wildcard expansion that produce errors when DH_COMPAT is 5. * debian/libtao-dev.install: do not distribute include files from TAO_IDL. They are not needed and don't get installed when using the autotools method. * debian/rules: rename mwc.pl and mpc.pl to mwc-ace and mpc-ace. * debian/ace-config*,debian/tao-config*: dropped. These files were no longer installed. * debian/libace-dev.install: don't install ace-config and tao-config manpages either (Closes: #367478). * debian/control: relax mpc-ace dependencies. This package now installs without pulling any ACE library. Thanks to Alex Bodnaru for noticing. * debian/control: simplify packages synopsis and descriptions. * debian/control: drop xerces dependency (Closes: #378605). Xerces is only needed by DAnCE, which is not packaged yet. * debian/libace-dev.install: remove generate_export_file.pl for now. * patches/31-gcc-4.1-fix.dpatch: add other type-punned fixes taken from upstream. * debian/mpc.sgml: new man page. * debian/patches/32-bug1770-fix.dpatch,33-bug1805-fix.dpatch: backport two patches for SSL wrappers. -- Thomas Girard Thu, 20 Jul 2006 20:55:53 +0200 ace (5.4.7-9) unstable; urgency=low * debian/patches/28-bug2222-fix.dpatch, debian/patches/29-bug2262.dpatch: backport upstream fixes. * debian/patches/31-gcc-4.1-fix.dpatch: fix "dereferencing type-punned pointers" gcc 4.1 warning. * debian/patches/30-Env_Value-template-specialization-fix.dpatch: backport template specialization fix (Closes: #358898). * debian/patches/20-debian-compiler-definitions.dpatch: downgrade optimization flag from `-O3' to `-O2'. * debian/rules: add ${perl:Depends} for mpc-ace package. * debian/control: make a new package, libciao-doc. * debian/libtao-dev.install: add missing pkg-config file for ImR_Client library. -- Thomas Girard Wed, 29 Mar 2006 22:14:53 +0200 ace (5.4.7-8) unstable; urgency=low * debian/copy_template_sources.sh: add missing files to `libtao-dev' package. Thanks to Arren and Bernhard Seibold for reporting this. * debian/patches/23-PortableGroup-exceptions-propagation.dpatch, debian/patches/24-collocated-oneway+SYNC_WITH_SERVER-fix.dpatch, debian/patches/25-TypeCode-equivalent-fix.dpatch, debian/patches/26-union-_default-fix.dpatch, debian/patches/27-bug2225-fix.dpatch: backport various upstream fixes. * debian/control: tighten build dependency from `xlibs-dev' to `libxt-dev'. (Closes: #346607). -- Thomas Girard Fri, 13 Jan 2006 17:15:37 +0200 ace (5.4.7-7) unstable; urgency=low * debian/config/config.h: add IPv6 support. Thanks to David Hausheer for the report and the fix. (Closes: #341988) * debian/patches/23-TTY_IO-compilation-fix.dpatch: new patch to work around `struct termios` platform-specific fields. (Closes: #342328). * debian/patches/84-skip-DAnCE-compilation.dpatch: completely disable DAnCE compilation, since we don't package it. (Closes: #336020). * Really close fixed in NMU bugs (Closes: #324271, #339142). -- Konstantinos Margaritis Mon, 19 Dec 2005 13:40:48 +0200 ace (5.4.7-6) unstable; urgency=low * debian/control: consolidate package descriptions. * debian/patches/16-g++4-visibility-tweaks.dpatch: Backport upstream tweaks for g++ 4 visibility feature and disable visibility hiding for now. (Closes: #324271). * debian/rules: g++ 4.0.2 was ICE'ing on #pragma once. This is no longer true as of g++-4.0_4.0.2-4, so we can use g++4 again. For the record, another possible fix was to #define ACE_LACKS_PRAGMA_ONCE in `$ACE_ROOT/ace/config.h`. * Add `c2a` suffix to all libs for libstdc++ allocator change. (Closes: #339142). -- Thomas Girard Fri, 18 Nov 2005 20:23:59 +0100 ace (5.4.7-5) unstable; urgency=low * Force gcc 3.4 for all arches, seems gcc 4.0 produces errors on all of them. (Closes: #333981) -- Konstantinos Margaritis Wed, 12 Oct 2005 03:26:14 +0300 ace (5.4.7-4) unstable; urgency=medium * Rebuilt package for the Qt C++ transition. (Closes: #327926). * Also, gcc 4.0 is buggy in some arches, use g++-3.4 on them instead. Update: Even on i386, cpp-4.0 produces Internal Compiler Errors(ICEs). For this reason, cpp-3.4 will be used instead (but with gcc/g++ 4.0. -- Konstantinos Margaritis Mon, 4 Oct 2005 03:21:20 +0300 ace (5.4.7-3) unstable; urgency=low * Fixed (another) missing build-dependency. (Closes: #323630) (this is getting irritating :-) -- Konstantinos Margaritis Thu, 18 Aug 2005 10:29:48 +0300 ace (5.4.7-2) unstable; urgency=low * Fixed missing build-dependency in the .dsc file. (Closes: #323181) -- Konstantinos Margaritis Tue, 16 Aug 2005 01:09:09 +0300 ace (5.4.7-1) unstable; urgency=low * Thomas Girard - New upstream release. (Closes: #317488) - Package names were changed to include the full library soname. (Closes: #288161) - debian/control: libtao-{xt,qt}reactor are now called libtao-{xt,qt}resource. Also add libtao-{fl,tk}resource. - debian/control: add new package libace-tmcast5.4.7. * Konstantinos Margaritis - Now use the .bz2 version of the original tarball to save space. -- Konstantinos Margaritis Fri, 12 Aug 2005 12:45:13 +0300 ace (5.4.2.1.0-4) unstable; urgency=high * Thomas Girard - debian/control: o libacexml-dev depends on libace-dev. o libkokyu-dev depends on libace-dev. o libtao-dev depends on libtao1.4. o normalize Depends: and Build-Depends: sections. - debian/ace-config.1 debian/tao-config.1: fix hyphenation problem reported by lintian. - debian/libciao-dev.install: add missing .idl and .pidl files. (Closes: #307258) -- Thomas Girard Mon, 2 May 2005 19:30:01 +0200 ace (5.4.2.1.0-3) unstable; urgency=high * Thomas Girard - debian/patches/84-mpc-honour-soversion.dpatch: new patch from upstream to honour the `version' keyword for libraries. - debian/patches/17-fix-tao-encode_value-memory-leak: new patch from upstream to fix a potential memory leak. - debian/mpc-ace.install: add depgen.pl. (Closes: #289157) - debian/tao_idl: new script that automatically sets ACE_ROOT and TAO_ROOT environment variables. (Closes: #289158) - debian/rules: unbreak gperf-ace. (Closes: #294338) - debian/remove_reactor_dups.sh: new script to ensure that duplicate reactor header files get deleted. (Closes: #294660) - debian/patches/21-always-inline.dpatch, debian/config.h: Always define __ACE_INLINE__, and remove the inline option from the MPC generated GNUmakefiles. Thanks to Marek Brudka for reporting this and for providing the fix. (Closes: #290114) - debian/patches/18-fix-trader-twiddle-operator.dpatch: backport fix to correct operator ~ in trader constraints. - debian/patches/19-fix-taoidl-fd-leak.dpatch: backport a fix to close open file. - debian/control: lib{ace,tao}qtreactor-dev packages depend on libqt3-mt-dev. - debian/libtao-orbsvcs1.4.install: o Add FT_ReplicationManager. o Add Fault_Detector and Fault_Notifier. - debian/control: o mpc-ace is in devel section. o lib{ace,tao}-{fl,tk,qt,xt}reactor-dev are in libdevel section. - debian/tao_ifr: new wrapper script that automatically sets ACE_ROOT and TAO_ROOT environment variables. - debian/libtao-orbsvcs1.4.manpages: add TAO_ORB_Options.1 manpage. -- Thomas Girard Wed, 30 Mar 2005 23:24:40 +0200 ace (5.4.2.1.0-2) unstable; urgency=medium * Konstantinos Margaritis - Changed dependency of libfltk1-dev in libace-flreactor-dev to libfltk1.1-dev (Closes: #289287) - Added Uploaders field in control. -- Konstantinos Margaritis Sat, 8 Jan 2005 22:39:05 +0200 ace (5.4.2.1.0-1) unstable; urgency=low * Thomas Girard - Much lintian cleaning. - Integrate upstream MPC patch to honour `libout' and `install' keywords. - Repackage FTRT_EventChannel. - Bug 242881 was closed in the previous upload. (Closes: #242881) - debian/control: libtao-dev should depend on libace-dev. (Closes: #277052) - debian/{Basic,Event,Notify,RTEvent}_Logging_Service.sgml: new man pages. - debian/rules: add docbook-to-man calls. * Raphael Bossek - debian/config/debian.features: MPC configuration for Debian GNU/Linux added - debian/config/platform_macros.GNU: Removed due to introduction of debian.features files. This file will be generated - debian/rules: Uses dpatch. Simplified clean target by removing temporary ACE_wrappers subdirectory. Install ace-config and tao-config scripts with executable bit set (Closes: #278522, #278523) - debian/control: Added new reactor packages. Removed depricated suggestions on ace+tao-utilities. Added libssl-dev as recommendation for libace-dev. Added suggestions for pkg-config - Upgrade to latest version of TAO (Closes: #265238) - debian/pkgconfig-ace, debian/pkgconfig-tao, debian/ace.pc.in, debian/tao.pc.in: Support for pkg-config added - debian/libace-dev.links: Added sym-link for /usr/share/ace/lib and /usr/share/ace/bin/generate_export_file.pl - debian/*.docs, debian/*.manpages: Added source directory ACE_wrappers as prefix - debian/libace-dev.install: Added ACE_wrappers/bin/generate_export_file.pl -- Thomas Girard Mon, 18 Oct 2004 13:35:56 +0200 ace (5.4.2.1-1) unstable; urgency=low * Thomas Girard - New upstream release. (Closes: #243062) - Do not link against Xt libs. (Closes: #251477) - As such, libace-dev does not need to depend on libxt-dev nor xlibs-dev (Closes: #253226) - Add MPC. - Patch ACE_IOStream to support g++ 3.3. (Closes: #243473) - Patch MPC to honour `libout' and `install' keywords in GNUmakefile generation. See DOC Bug#1915. - Backport a fix to NotifyLoggingService from CVS. - Make %S work in ACE_DEBUG. * Konstantinos Margaritis - Fixed missed path for libACE.so.5.4.2 in dh_shlibdeps - Fixed incorrect timestamp of original archive (1970 etc). -- Konstantinos Margaritis Thu, 2 Sep 2004 23:04:56 +0200 ace (5.4.0.1-1.1) unstable; urgency=low * Fixed ACE_NDEBUG configuration of ACE. (Closes: #242881) * Build-depends on libqt3-headers removed qt_reactor not set. * System capabilities will be determined by including in . -- Raphael Bossek Thu, 8 Apr 2004 15:37:24 +0200 ace (5.4.0.1-1) unstable; urgency=low * KM: release to fix the timestamp errors in the upstream source. -- Konstantinos Margaritis Sun, 29 Feb 2004 21:11:14 +0200 ace (5.4-3) unstable; urgency=low * KM: backported fixes from CVS to fix 64-bit pointer to int casting in orbsvcs/RTCosScheduling files. This is to fix FTBFS bug in 64-bit archs, until 5.4.1 is released (mid-march). Closes: #233890 -- Konstantinos Margaritis Wed, 28 Feb 2004 15:53:30 +0200 ace (5.4-2) unstable; urgency=low * KM: Includes patch from Raphael Bossek to handle bug in tao_idl to use ACE_GPERF instead of plain gperf. * BN: libace-dev now suggests libtao-dev instead of the non-existing tao package. (Closes: #233488) * BN: prepended a "-" to the chmod commands in debian/rules so that they don't fail if used repeatedly. -- Brian Nelson Wed, 18 Feb 2004 02:23:07 -0800 ace (5.4-1) unstable; urgency=low * KM: new upstream release * KM: Now builds also ACE+SSL library, Kokyu and CIAO libs. * KM: Due to the orbsvcs executables we can't have 2 different versions of the libtao-orbsvcs1.x package, so we have to replace. This doesn't apply for libace5.x, libtao1.x or the rest of the libs. * Closes: #229134 (fixed dependencies). -- Konstantinos Margaritis Sun, 25 Jan 2004 13:33:20 +0200 ace (5.3.1-8) unstable; urgency=low * KM: Included the .pidl files in libtao-dev package. These were needed by some .idl files. (Closes: #213568) -- Konstantinos Margaritis Wed, 29 Oct 2003 23:46:01 +0200 ace (5.3.1-7) unstable; urgency=low * BN: Changed maintainer to "Debian ACE+TAO maintainers " and moved myself to the Uploaders. * KM: Fixed conflicting file "/usr/bin/catior" by changing the name to tao-catior in libtao-dev. (Closes: #214421) -- Brian Nelson Thu, 9 Oct 2003 15:05:12 -0700 ace (5.3.1-6) unstable; urgency=low * Added the ORB services .idl files that were left out from the libtao-orbsvcs-dev package. (Closes: #213568) -- Konstantinos Margaritis Sun, 5 Oct 2003 12:31:21 +0300 ace (5.3.1-5) unstable; urgency=low * Regenerated .diff.gz so that it is no longer broken (Closes: #211501) * Back out Debian-specific change in the way that CosNamingC.h is included in TAO/utils/nslist/nslist.cpp. I'm not sure why this was changed in the first place, but it broke the build. (Closes: #213611) -- Brian Nelson Wed, 1 Oct 2003 10:28:54 -0700 ace (5.3.1-4) unstable; urgency=low * Moved the manpages back to -dev packages to follow policy. * Now mostly lintian clean. * provided manpages for a few executables. -- Konstantinos Margaritis Wed, 17 Sep 2003 11:43:55 +0300 ace (5.3.1-3) unstable; urgency=low * Updated to new standards version 3.6.1 * Fixed the section of a couple of packages. * Now the getrlimit, etc functions are always defined as ints. g++ 3.x does not complain anymore (Closes: #104681). -- Konstantinos Margaritis Tue, 16 Sep 2003 10:31:03 +0300 ace (5.3.1-2) unstable; urgency=low * Now the following TAO packages are created: libtao1.3.1, libtao-dev, libtao-doc, libtao-orbsvcs1.3.1, libtao-orbsvcs-dev. * Also included ACEXML library in two separate packages: libacexml5.3.1, libacexml-dev. * Full doxygen documentation not included due to size concerns. (Closes: #108749). * tao-config included in libtao-dev. (Closes: #159234). * All -dev packages carry their respective examples in full and uncompressed. (Closes: #52145, #76967). * libACE.a is compiled with thread support enabled. (Closes: #126717). dbbalancer now builds successfully with -static. * Moved all manpages to respective -doc pagkaces. (Closes: #73044). -- Konstantinos Margaritis Tue, 9 Sep 2003 10:41:14 +0300 ace (5.3.1-1) unstable; urgency=low * New upstream release * New maintainers for the package, Brian Nelson and Konstantinos Margaritis (Closes #199768) * Removed build-dependency on versioned g++ * Bumped up standards version to 3.6.0 * Dropped version string from -dev package name * libace-dev: downgrade tao to suggests (where did tao go anyway?) * Use debian/compat for debhelper versioning * Use dh_install instead of dh_movefiles, and dh_link instead of manual ln. The debian/rules file is a lot less hairy now. * Reinstated a libace-doc package (Closes: #192338) * Added symlinks to /usr/share/ace so that this directory can serve as $ACE_ROOT. Added a corresponding note to the README.Debian file. (Closes: #80329) * Removed the /usr/lib/libACE.so.5 and libACE_RMCast.so.5 symlinks, and made the package names match the sonames. The sonames now include the full version string, so ACE libs of different versions from now on should coexist nicely, even though upstream doesn't use a proper versioning scheme. (Closes: #147741) -- Brian Nelson Fri, 15 Aug 2003 00:15:59 -0700 ace (5.2.4-1.2) unstable; urgency=low * fix to previous NMU * (Closes: #190792) -- Konstantinos Margaritis Sat, 26 Apr 2003 19:18:49 +0300 ace (5.2.4-1.1) unstable; urgency=low * gcc-3.2 transition, NMU patch by Andreas Metzler * (Closes: #188328) -- Konstantinos Margaritis Fri, 11 Apr 2003 23:25:38 +0200 ace (5.2.4-1) unstable; urgency=low * New upstream. * Incorporated below change from Goswin. (Closes: #159236) -- Ossama Othman Sun, 15 Sep 2002 14:14:06 -0700 ace (5.2.1-1.1) unstable; urgency=low * debian/control: libace5.2-dev recommends tao * ace-config: export ACE_ROOT make -f /usr/share/ace/ace-config.GNU test for tao-confg unset MAKEs env vars to prevent extranous output * debian/rules: install platform macros in $(ACE_PREFIX)/share/ace/include/makeinclude/ -- Goswin Brederlow Mon, 02 Sep 2002 02:37:25 +0200 ace (5.2.1-1) unstable; urgency=low * New upstream. * Pulled in updated g++ configuration header and Linux Makefile rules for ACE. They allow implicit template instantiation to occur. * Disabled support for the ACE_XT_Reactor. Most folks never use it. -- Ossama Othman Mon, 25 Feb 2002 13:15:25 -0800 ace (5.1.8-7) unstable; urgency=low * Really removed the flex/lex checks in configure.in. -- Ossama Othman Wed, 28 Nov 2001 15:30:59 -0800 ace (5.1.8-6) unstable; urgency=low * Added "libtool" to Build-Depend field, and run libtoolize in `rules' file to pull in links to recent config.sub, config.guess and ltmain.sh revisions. (Closes: #120141) * Removed local autoconf test that checks if new() throws exception on failure. The test caused build hosts to come to a crawl. g++ does indeed throw an exception. Just configure that explicitly. (Closes: #90731) * Removed flex and yacc checks in configure.in. They aren't necessary to build ACE. * Closed bug related to gcc internal compiler error. (Closes: #85230) * Removed unnecessary g++ dependency in control file. (Closes: #84405) * Added missing xlibs-dev dependency to libace5.1-dev package. -- Ossama Othman Mon, 26 Nov 2001 16:53:33 -0800 ace (5.1.8-5.1) unstable; urgency=high * NMU * Added the missing build dependencies on flex and xlibs-dev. (closes: #101170) -- Adrian Bunk Sat, 10 Nov 2001 01:17:53 +0100 ace (5.1.8-5) unstable; urgency=low * libace5.1 and libace5.1-dev now conflict with their corresponding ACE 5.0 debian packages, since both sets of packages have files with the same name. libace5.1-dev also conflicts with libace4.6-dev. (#74031) * Added xlib6g-dev to the list of build dependencies. The X11 libraries aren't strictly necessary to build ACE, but the Debian packages enable ACE's XtReactor support. * Updated `README.Debian'. The Debian ACE packages are no longer built using experimental ACE Configuration Project distributions. They are built using the upstream distribution's autoconf support (contributed by the ACE Configuration Project). -- Ossama Othman Thu, 5 Oct 2000 17:35:56 -0700 ace (5.1.8-4) unstable; urgency=low * Updated configure script from new upstream since it detects the CDROM and STREAMS ioctl conflict in current kernels and glibc 2.1.94. This fixes a seg fault that would occur in ACE applications that use the ACE_Reactor. -- Ossama Othman Wed, 4 Oct 2000 14:43:48 -0700 ace (5.1.8-3) unstable; urgency=low * Rebuilt against glibc 2.1.94 (pre-2.2). -- Ossama Othman Fri, 29 Sep 2000 12:40:39 -0700 ace (5.1.8-2) unstable; urgency=low * Added missing Build-Depends and Build-Depends-Indep fields to the control file. (#70113) * Corrected `debian/rules' so that it doesn't erase the installed `config-all.h' header. -- Ossama Othman Sat, 23 Sep 2000 09:54:26 -0700 ace (5.1.8-1) unstable; urgency=low * New upstream release. -- Ossama Othman Fri, 25 Aug 2000 15:45:01 -0700 ace (5.0.7-4) frozen unstable; urgency=low * Rebuilt the packages so that they get installed in the unstable distribution archive, in addition to the frozen one. (#58366) -- Ossama Othman Wed, 24 May 2000 15:15:21 -0700 ace (5.0.7-3) frozen; urgency=high * Updated libtool related files from latest libtool multi-language branch snapshot. Regenerated the configure script. It now has the appropriate deplibs regex. Apparently, there was a problem with M4 quoting in the last package upload. (#63932) * Explicitly enable C++ exception support. A fix to the configure script caused this to be necessary since the configure script disables exception handling by default. * Updated `debian/rules' file to use debhelper v2 support. * Updated download location in `debian/copyright'. -- Ossama Othman Fri, 19 May 2000 15:05:30 -0700 ace (5.0.7-2) frozen; urgency=low * Updated `acewindex.html' file so that it is no longer empty. (#50704) * Updated `ACE_Log_Msg.3' man page so that important information is included when it is generated. This patch was incorporated upstream. (#51224) * Replaced configure script and related files with current upstream configure script. Patched OS.{h,i} with llseek/lseek64 related upstream fixes. This should correct the lseek64 and llseek problems encountered in the m68k port. (#50094, #51074) * Updated ace-config.in with latest upstream since the previous one was missing a "-lACE" in the library list. * Fixed "--infodir" and "--mandir" configure script options in `rules' file. They incorrectly used a the actual install prefix instead of the debian package install prefix. This fixes a problem where the gperf-ace documentation wasn't being registered doc-base. -- Ossama Othman Mon, 17 Jan 2000 18:39:18 -0800 ace (5.0.7-1) unstable; urgency=low * New upstream. * Enabled C++ template repository during build. This will reduce the size of the resulting binaries by about 20%. * Updated copyright file. (updated distribution terms contain suggestions contributed by Richard M. Stallman) * FHS updates. * Added versioned shlibs dependencies via "-V" option for dh_makeshlibs. This is important since new versions of libACE are not always binary compatible with previous versions. * Updated libace5.0-dev to use package dh_installinfo to install gperf-ace.info file. * Minor update to ACE documentation index.html file. * Added ACE man pages in HTML format. -- Ossama Othman Fri, 29 Oct 1999 21:13:10 -0500 ace (4.6.44-1) unstable; urgency=low * New upstream. -- Ossama Othman Tue, 13 Jul 1999 20:23:11 -0500 ace (4.6.42-1) unstable; urgency=low * New upstream. -- Ossama Othman Sat, 26 Jun 1999 15:46:16 -0500 ace (4.6.37-1) unstable; urgency=low * New upstream. * Added doc-base support. -- Ossama Othman Tue, 27 Apr 1999 13:28:53 -0500 ace (4.6.31-2) unstable; urgency=low * Removed clone.1 man page since ACE clone utility isn't needed for the Debian packages. -- Ossama Othman Mon, 22 Mar 1999 14:47:50 -0600 ace (4.6.31-1) unstable; urgency=low * New upstream beta. * Added ACE PROBLEM-REPORT-FORM to each package. (#34455) * Rebuilt against glibc 2.1. (#34573) * Added check for struct siginfo_t in signal.h. Thanks to Konstantinos Margaritis for pointing this configuration bug out. (#34678) -- Ossama Othman Sun, 24 Jan 1999 15:49:04 -0500 ace (4.6.15-1) unstable; urgency=low * Updated to ACE release 4.6.15. -- Ossama Othman Sat, 16 Jan 1999 18:47:25 -0500 ace (4.6.13-1) unstable; urgency=low * Updated to ACE release 4.6.13. -- Ossama Othman Thu, 14 Jan 1999 19:54:41 -0500 ace (4.6.12-2) unstable; urgency=low * Forgot to change libace4.6-dev dependency from version 4.6.7 to 4.6.12. -- Ossama Othman Thu, 14 Jan 1999 02:47:13 -0500 ace (4.6.12-1) unstable; urgency=low * Updated to ACE release 4.6.12. -- Ossama Othman Thu, 14 Jan 1999 01:17:16 -0500 ace (4.6.7-1) unstable; urgency=low * Force libtool to link "-lpthread" into ACE's inter-library dependencies since the configure script detects that the "-pthread" flag can be used which make it unneccessary to explicitly link to "-lpthread." However, we want the "-lpthread" dependency since not all users or programs use the "-pthread" compiler flag. * Fixed packaging bug where run-time library package tried to install/remove the gperf-ace info file. * Updated to ACE release 4.6.7. -- Ossama Othman Tue, 15 Dec 1998 16:29:10 -0500 ace (4.6.5-3) unstable; urgency=low * Enabled ACE debugging macros. * Enabled ACE logging macros (LM_DEBUG and LM_INFO). -- Ossama Othman Tue, 8 Dec 1998 14:22:02 -0500 ace (4.6.5-2) unstable; urgency=low * Released ace-4.6.5-2 packages. * gperf files (gperf, gperf.1 and gperf.info) will be installed as gperf-ace to prevent conflicts with the existing Cygnus based gperf package. * Corrected libACE compile list by removing template sources from the libACE "SOURCES" make variable. -- Ossama Othman Thu, 3 Dec 1998 15:59:06 -0500 ace (4.6.5-1) unstable; urgency=low * Released ace-4.6.5-1 packages -- Ossama Othman Tue, 1 Dec 1998 16:09:49 -0500 ace (4.6.4-2) unstable; urgency=low * Added libnsl to library check for t_accept() (not a Debian issue). * Moved all pre-processor related lines to the first column of the M4 block so that they will be in the first column of their respective test programs. * Made definition of ACE_HAS_NONSTATIC_OBJECT_MANAGER a configure script option since there was no working autoconf test for it. -- Ossama Othman Mon, 30 Nov 1998 17:24:49 -0500 ace (4.6.4-1) unstable; urgency=low * Added "install-info" commands to postinst and prerm scripts. * Added a "modernized" gperf.info to the distribution. * Added "#ifndef" guards to PACKAGE, VERSION, DEBUG and NDEBUG macros in acconfig.h to prevent redefinition when using ACE with a package that defines them. * Added Env_Value_T.cpp to list of template sources to be installed. * Moved ace-config script to "-dev" package. * Added gperf to the distribution. -- Ossama Othman Fri, 13 Nov 1998 16:02:32 -0500 ace (4.6.3-2) unstable; urgency=low * Released ace-4.6.3-2 packages. * Corrected ace-config and configure scripts so that the X11 libraries are displayed correctly by the ace-config script. -- Ossama Othman Thu, 12 Nov 1998 17:24:11 -0500 ace (4.6.3-1) unstable; urgency=low * Initial Release. -- Ossama Othman Thu, 12 Nov 1998 13:13:59 -0500 debian/libtao-orbsvcs-dev.links0000664000000000000000000000005412224735417013745 0ustar usr/include/orbsvcs usr/lib/ace/TAO/orbsvcs debian/libace-6.0.3.install0000664000000000000000000000016112224747277012455 0ustar usr/lib/libACE-*.so usr/lib/libACE_ETCL-*.so usr/lib/libACE_Monitor_Control-*.so usr/lib/libACE_ETCL_Parser-*.so debian/copyright0000664000000000000000000005706412224747277011155 0ustar This package was debianized by: Ossama Othman on Fri, 25 Sep 1998 16:43:42 -0400. Then maintained by: Brian Nelson Konstantinos Margaritis Thomas Girard It is now maintained by: Debian ACE+TAO maintainers It was downloaded from: Files: * Copyright: © 1993-2011 Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University License: other-BSD Copyright and Licensing Information for ACE(TM), TAO(TM), CIAO(TM), DAnCE(TM), and CoSMIC(TM) [1]ACE(TM), [2]TAO(TM), [3]CIAO(TM), DAnCE(TM), and [4]CoSMIC(TM) (henceforth referred to as "DOC software") are copyrighted by [5]Douglas C. Schmidt and his [6]research group at [7]Washington University, [8]University of California, Irvine, and [9]Vanderbilt University, Copyright (c) 1993-2011, all rights reserved. Since DOC software is open-source, freely available software, you are free to use, modify, copy, and distribute--perpetually and irrevocably--the DOC software source code and object code produced from the source, as well as copy and distribute modified versions of this software. You must, however, include this copyright statement along with any code built using DOC software that you release. No copyright statement needs to be provided if you just ship binary executables of your software products. You can use DOC software in commercial and/or binary software releases and are under no obligation to redistribute any of your source code that is built using DOC software. Note, however, that you may not misappropriate the DOC software code, such as copyrighting it yourself or claiming authorship of the DOC software code, in a way that will prevent DOC software from being distributed freely using an open-source development model. You needn't inform anyone that you're using DOC software in your software, though we encourage you to let [10]us know so we can promote your project in the [11]DOC software success stories. The [12]ACE, [13]TAO, [14]CIAO, [15]DAnCE, and [16]CoSMIC web sites are maintained by the [17]DOC Group at the [18]Institute for Software Integrated Systems (ISIS) and the [19]Center for Distributed Object Computing of Washington University, St. Louis for the development of open-source software as part of the open-source software community. Submissions are provided by the submitter ``as is'' with no warranties whatsoever, including any warranty of merchantability, noninfringement of third party intellectual property, or fitness for any particular purpose. In no event shall the submitter be liable for any direct, indirect, special, exemplary, punitive, or consequential damages, including without limitation, lost profits, even if advised of the possibility of such damages. Likewise, DOC software is provided as is with no warranties of any kind, including the warranties of design, merchantability, and fitness for a particular purpose, noninfringement, or arising from a course of dealing, usage or trade practice. Washington University, UC Irvine, Vanderbilt University, their employees, and students shall have no liability with respect to the infringement of copyrights, trade secrets or any patents by DOC software or any part thereof. Moreover, in no event will Washington University, UC Irvine, or Vanderbilt University, their employees, or students be liable for any lost revenue or profits or other special, indirect and consequential damages. DOC software is provided with no support and without any obligation on the part of Washington University, UC Irvine, Vanderbilt University, their employees, or students to assist in its use, correction, modification, or enhancement. A [20]number of companies around the world provide commercial support for DOC software, however. DOC software is Y2K-compliant, as long as the underlying OS platform is Y2K-compliant. Likewise, DOC software is compliant with the new US daylight savings rule passed by Congress as "The Energy Policy Act of 2005," which established new daylight savings times (DST) rules for the United States that expand DST as of March 2007. Since DOC software obtains time/date and calendaring information from operating systems users will not be affected by the new DST rules as long as they upgrade their operating systems accordingly. The names ACE(TM), TAO(TM), CIAO(TM), DAnCE(TM), CoSMIC(TM), Washington University, UC Irvine, and Vanderbilt University, may not be used to endorse or promote products or services derived from this source without express written permission from Washington University, UC Irvine, or Vanderbilt University. This license grants no permission to call products or services derived from this source ACE(TM), TAO(TM), CIAO(TM), DAnCE(TM), or CoSMIC(TM), nor does it grant permission for the name Washington University, UC Irvine, or Vanderbilt University to appear in their names. If you have any suggestions, additions, comments, or questions, please let [21]me know. [22]Douglas C. Schmidt _________________________________________________________________ Back to the [23]ACE home page. References 1. http://www.cs.wustl.edu/~schmidt/ACE.html 2. http://www.cs.wustl.edu/~schmidt/TAO.html 3. http://www.dre.vanderbilt.edu/CIAO/ 4. http://www.dre.vanderbilt.edu/cosmic/ 5. http://www.dre.vanderbilt.edu/~schmidt/ 6. http://www.cs.wustl.edu/~schmidt/ACE-members.html 7. http://www.wustl.edu/ 8. http://www.uci.edu/ 9. http://www.vanderbilt.edu/ 10. mailto:doc_group@cs.wustl.edu 11. http://www.cs.wustl.edu/~schmidt/ACE-users.html 12. http://www.cs.wustl.edu/~schmidt/ACE.html 13. http://www.cs.wustl.edu/~schmidt/TAO.html 14. http://www.dre.vanderbilt.edu/CIAO/ 15. http://www.dre.vanderbilt.edu/~schmidt/DOC_ROOT/DAnCE/ 16. http://www.dre.vanderbilt.edu/cosmic/ 17. http://www.dre.vanderbilt.edu/ 18. http://www.isis.vanderbilt.edu/ 19. http://www.cs.wustl.edu/~schmidt/doc-center.html 20. http://www.cs.wustl.edu/~schmidt/commercial-support.html 21. mailto:d.schmidt@vanderbilt.edu 22. http://www.dre.vanderbilt.edu/~schmidt/ 23. http://www.cs.wustl.edu/ACE.html Files: apps/gperf/* Copyright: © 1989 Free Software Foundation, Inc. License: GPL-2+ On Debian systems the full text of the GNU General Public License (Version 2) can be found in the `/usr/share/common-licenses/GPL-2' file. Files: MPC/* Copyright: © 2003-2006 OCI. St. Louis MO USA License: other-BSD MPC (Licensed Product) is protected by copyright, and is distributed under the following terms. MPC (Make, Project and workspace Creator) is an open source tool, developed by OCI and written in Perl. It is designed to generate a variety of tool specific project files from a common baseline. Through the powerful combination of inheritance and defaults MPC is able to reduce the maintenance burden normally associated with keeping multiple target platforms, their unique build tools, and inconsistent feature sets current. It is also easily extensible to support new build environments. The objective is to solve the prevalent problem of fragile build environments, usually experienced by developer groups, by replacing it with a singular robust build environment, and an active community of users committed to its evolution. Since MPC is open source and free of licensing fees, you are free to use, modify, and distribute the source code, as long as you include this copyright statement. In particular, you can use MPC to build proprietary software and are under no obligation to redistribute any of your source code that is built using MPC. Note, however, that you may not do anything to the MPC code, such as copyrighting it yourself or claiming authorship of the MPC code, that will prevent MPC from being distributed freely using an open source development model. Warranty LICENSED PRODUCT IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. Support LICENSED PRODUCT IS PROVIDED WITH NO SUPPORT AND WITHOUT ANY OBLIGATION ON THE PART OF OCI OR ANY OF ITS SUBSIDIARIES OR AFFILIATES TO ASSIST IN ITS USE, CORRECTION, MODIFICATION OR ENHANCEMENT. Support may be available from OCI to users who have agreed to a support contract. Liability OCI OR ANY OF ITS SUBSIDIARIES OR AFFILIATES SHALL HAVE NO LIABILITY WITH RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY LICENSED PRODUCT OR ANY PART THEREOF. IN NO EVENT WILL OCI OR ANY OF ITS SUBSIDIARIES OR AFFILIATES BE LIABLE FOR ANY LOST REVENUE OR PROFITS OR OTHER SPECIAL, INDIRECT AND CONSEQUENTIAL DAMAGES, EVEN IF OCI HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. MPC copyright OCI. St. Louis MO USA, 2003-2006 Files: contrib/minizip/*.[ch] Copyright: © 1998-2005 Gilles Vollant License: ZLIB This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Files: ace/OS_NS_unistd.inl (swab function) Copyright: © 1994-2006 Red Hat, Inc. License: BSD-3 Files: ace/UTF32_Encoding_Converter.cpp ace/UTF16_Encoding_Converter.cpp ace/UTF16_Encoding_Converter.inl Copyright: © 2001-2004 Unicode, Inc. License: other Limitations on Rights to Redistribute This Code Unicode, Inc. hereby grants the right to freely use the information supplied in this file in the creation of products supporting the Unicode Standard, and to make copies of this file in any form for internal or external distribution as long as this notice remains attached. Files: apps/JAWS3/* Copyright: © 2000 James Hu and Entera, Inc. License: other Copyright and Licensing Information for JAWS Adaptive Web Server, version 3 (JAWS3). JAWS3 is copyrighted by James Hu and Entera, Inc., Copyright (c) 2000, all rights reserved. Since JAWS3 is open source, free software, you are free to use, modify, and distribute the JAWS3 source code and object code produced or otherwise derived from JAWS3, provided you include this copyright statement in all versions of such code. In particular, you can use JAWS3 in proprietary software and are under no obligation to redistribute any of your source code that is derived from JAWS3. Note, however, that you may not modify the JAWS3 code in any way, or take any other action such as copyrighting it yourself or claiming authorship of the JAWS3 code, that will prevent JAWS3 from being distributed freely using an open source development model. JAWS3 is provided as is with no warranties of any kind, including the warranties of design, merchantibility and fitness for a particular purpose, noninfringement, or arising from a course of dealing, usage or trade practice. Moreover, JAWS3 is provided with no support and without any obligation on the part of Entera, Inc., or its employees. Entera, Inc., and its employees shall have no liability with respect to the infringement of copyrights, trade secrets or any patents by JAWS3 or any part thereof. Moreover, in no event will Entera, Inc., or its employees, be liable for any lost revenue or profits or other special, indirect and consequential damages. By submitting comments, suggestions, code, code snippets, techniques (including that of usage), and algorithms, submitters acknowledge that they have the right to do so, that any such submissions are given freely and unreservedly, and that they waive any claims to copyright or ownership. In addition, submitters acknowledge that any such submission might become part of the copyright maintained on the overall body of code, which comprises the JAWS3 software. By making a submission, submitters agree to these terms. Furthermore, submitters acknowledge that the incorporation or modification of such submissions is entirely at the discretion of the moderators of the open source JAWS3 project or their designees. The names JAWS3 and Entera, Inc., may not be used to endorse or promote products or services derived from this source without express written permission from Entera, Inc. Further, products or services derived from this source may not be called JAWS3 nor may the name Entera, Inc., appear in their names, without express written permission from Entera, Inc. If you have any suggestions, additions, comments, or questions, please let me know. James C. Hu Entera, Inc. jxh@entera.com Files: apps/JAWS/clients/WebSTONE/* Copyright: © 1995 Silicon Graphics, Inc. License: other This file and all files contained in this directory are copyright 1995, Silicon Graphics, Inc. This software is provided without support and without any obligation on the part of Silicon Graphics, Inc. to assist in its use, correction, modification or enhancement. There is no guarantee that this software will be included in future software releases, and it probably will not be included. THIS SOFTWARE IS PROVIDED "AS IS" WITH NO WARRANTIES OF ANY KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. In no event will Silicon Graphics, Inc. be liable for any lost revenue or profits or other special, indirect and consequential damages, even if Silicon Graphics, Inc. has been advised of the possibility of such damages. Files: ASNMP/* Copyright: © 1996 Hewlett-Packard Company © 1988, 1989, 1991, 1992 Carnegie Mellon University © 1997 Cisco Systems, Inc. License: other-BSD These copyrights apply to the SNMP++ module shipped with the ACE library: /*=================================================================== Copyright (c) 1996 Hewlett-Packard Company ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS. Permission to use, copy, modify, distribute and/or sell this software and/or its documentation is hereby granted without fee. User agrees to display the above copyright notice and this license notice in all copies of the software and any documentation of the software. User agrees to assume all liability for the use of the software; Hewlett-Packard makes no representations about the suitability of this software for any purpose. It is provided "AS-IS without warranty of any kind,either express or implied. User hereby grants a royalty-free license to any and all derivatives based upon this software code base. =====================================================================*/ /********************************************************************** Copyright 1988, 1989, 1991, 1992 by Carnegie Mellon University All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of CMU not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ Certain portions of this version of HP's SNMP++ are: /*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Copyright 1997 Cisco Systems, Inc. Permission to use, copy, modify, and distribute this software for any purpose and without fee is hereby granted, provided that this copyright and permission notice appear on all copies of the software and supporting documentation, the name of Cisco Systems, Inc. not be used in advertising or publicity pertaining to distribution of the program without specific prior permission, and notice be given in supporting documentation that modification, copying and distribution is by permission of Cisco Systems, Inc. Cisco Systems, Inc. makes no representations about the suitability of this software for any purpose. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGMENT AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL CISCO SYSTEMS, INC. BE LIABLE FOR ANY DAMAGES ARISING OUT OF THIS LICENSE OR YOUR USE OF THE SOFTWARE INCLUDING WITHOUT LIMITATION, DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/ Files: ace/OS_NS_wchar.cpp (wcs*_emulation functions) Copyright: © 1991, 1993 The Regents of the University of California License: BSD-4 Copyright (c) 1991, 1993 The Regents of the University of California. All rights reserved. This code is derived from software contributed to Berkeley by James W. Williams of NASA Goddard Space Flight Center. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by the University of California, Berkeley and its contributors. 4. Neither the name of the University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Files: ace/Get_Opt.cpp Copyright: © 1987, 1993, 1994 The Regents of the University of California © 2000 The NetBSD Foundation, Inc. License: BSD-4 Copyright (c) 1987, 1993, 1994 The Regents of the University of California. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by the University of California, Berkeley and its contributors. 4. Neither the name of the University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ****************************************************************** Copyright (c) 2000 The NetBSD Foundation, Inc. All rights reserved. This code is derived from software contributed to The NetBSD Foundation by Dieter Baron and Thomas Klausner. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by the NetBSD Foundation, Inc. and its contributors. 4. Neither the name of The NetBSD Foundation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/tao_tls_notify.sgml0000664000000000000000000000532212224735417013122 0ustar TAO_ORB_Options1"> tao_cosnotify1"> tao_tls_basic1"> tao_tls_event1"> tao_tls_rtevent1"> tao_cosnaming1"> tao_cosnaming"> tao_tls_notify"> <d.hanvey@qub.ac.uk>"> ]> TAO_TLS_NOTIFY 1 &applname; TAO Notify Telecom Log Service SYNOPSIS &applname; -ORBoptions DESCRIPTION &applname; is an implementation of the Telecom Log Service that integrates with the Notification Service. The Telecom Log Service specification may be found on the OMG website at . &applname; requires a running &tao_cosnaming; and registers with it as `NotifyLogFactory'. OPTIONS The program follows the usual TAO ORB command line syntax. See &man_tao_orb_options;. BUGS Currently all Logs records are stored in memory. SEE ALSO &seealso; AUTHOR &username; &useremail; debian/TAO_ORB_Options.sgml0000664000000000000000000004725712224735361012740 0ustar <schmidt@cs.wustl.edu>"> ]> TAO_ORB_OPTIONS 1 &applname; Common options for programs that use TAO SYNOPSIS &progname; ORB_options program_options DESCRIPTION All programs relying on TAO understand the same set of parameters: the -ORB options that affect the ORB behaviour. This manual page describe these parameters. Please note that the ORB behaviour can also be altered using a svc.conf. See TAO's documentation for help on that topic. OPTIONS -ORBSvcConf configfilename Specifies the name of the file used to read service configuration directives via the Service Configurator framework. By default, a service configurator-based application will look for a file named svc.conf in the current directory. -ORBSvcConfDirective directivestring Specifies a service configuration directive, which is passed to the Service Configurator. You can pass multiple of these options on the same command-line. -ORBDebug Instructs the ORB to print debugging messages from the service configurator framework. This option does not have a value but is used as a toggle to enable or disable debugging messages. -ORBDebugLevel level Control the level of debugging in the ORB. Higher numbers generate more output (try 10). The default value of this option is 0. -ORBVerboseLogging {0,1,2} Controls the amount of status data printed on each line of the debug log. Higher numbers generate more output. The default value of this option is 0. -ORBLogFile logfilename Causes all ACE_DEBUG and ACE_ERROR output to be redirected to the designated filename. -ORBObjRefStyle {IOR,URL} Specifies the user-visible style of object references. The IOR style (default) is the conventional CORBA object reference, whereas the URL style looks more like a URL. -ORBCDRTradeoff maxsize Control the strategy to tradeoff between copy vs. no copy marshaling of octet sequences. If an octet sequence is smaller than maxsize (which defaults to ACE_DEFAULT_CDR_MEMORY_TRADEOFF) -- and the current message block contains enough space for it -- the octet sequence is copied instead of appended to the CDR stream. -ORBCollocation {global,per-orb,no} Specifies the use of collocation object optimization. If global is specified (default), objects in the same process will be treated as collocated. If per-orb is specified, only objects in the same ORB are treated as collocated. When no is specified, no objects are treated as collocated. -ORBCollocationStrategy {thru_poa,direct} Specifies what type of collocated object to use. If the thru_poa (default) strategy is used, TAO uses the collocation object implementation that respects POA's current state and policies. When using the direct strategy, method invocations on collocated objects become direct calls to servant without checking POA's status, which can increase performance. If you use the direct strategy, your interfaces must be compiled with the -Gd IDL compiler option. -ORBNodelay {0,1} Enable or disable the TCP_NODELAY option (Nagle's algorithm). By default, TCP_NODELAY is enabled. -ORBRcvSock recv_size Specify the size of the socket receive buffer as a positive, non-zero integer. If not specified, the ACE_DEFAULT_MAX_SOCKET_BUFSIZ default is used. -ORBSndSock snd_size Specify the size of the socket send buffer as a positive, non-zero integer. If not specified, the ACE_DEFAULT_MAX_SOCKET_BUFSIZ default is used. -ORBStdProfileComponents {0,1} If 0 then the ORB does not generate the OMG standardized profile components, such as the ORB type and code sets. Notice that the presence of this components is optional in GIOP 1.1 The default value is controlled by a compile-time flag (check orbconf.h). -ORBSingleReadOptimization {0,1} This option controls whether TAO's ``single read optimization'' is used when receiving requests. If this option is disabled (0), the ORB will do two reads to read a request: one reads the request header and the other reads the request payload. If this option is enabled (1), the ORB will do a read of size TAO_MAXBUFSIZE, hoping to read the entire request. If more than one request is read they will be queued up for processing later. This option defaults to 1 because it can provide better performance. However, in the case of RT-CORBA, this option should be set to 0. Consider the following scenario: two requests are read from one socket, the additional request is queued, and the ORB uses its Reactor's notification mechanism to wake up the follower threads. If at the same time, however, new requests arrive on others sockets of higher priority the lower priority queued message will be processed before the newly arrived higher priority request since Reactor notifications are given preferences over normal I/O, thereby causing priority inversion. -ORBDisableRTCollocation {0,1} This option controls whether the application wants to use or discard RT collocation decisions made by the RT ORB. A value of 1 disables RT collocation decisions and falls back on the default collocation decisions implemented in the default ORB. This is very useful for applications using the RT ORB and doesn't want to use the RT collocation decisions but fallback on the default decisions for better performance. The default value is 0. -ORBDefaultInitRef ior_prefix This argument allows resolution of initial references not explicitly specified with -ORBInitRef. It requires a URL prefix that, after appending a slash `/' (`|' for the UIOP pluggable protocol) and a simple object key, forms a new URL to identify an initial object reference. The URL prefix format currently supported is based on the standard corbaloc mechanism in the CORBA Interoperable Naming Service. -ORBDottedDecimalAddresses {0,1} Use the dotted decimal notation for addresses. This option can be used to workaround broken DNS implementations and may also reduce the time spent resolving IP addresses. By default, this option is disabled (0) since domain names are the standard address notation for IORs. -ORBEndpoint endpoint This option is similar to the -ORBListenEndPoints option described below. This option will be deprecated in later versions on TAO since the CORBA specification now defines the -ORBListenEndpoints option instead. -ORBListenEndpoints endpoint This option was introduced with the CORBA ORT (Object Reference Template) specification. It instructs a server ORB to listen for requests on the interface specified by endpoint. TAO endpoints are specified using a URL style format. An endpoint has the form: `protocol://V.v@addr1,...,W.w@addrN' where V.v and W.w are optional protocol versions for each address. An example of an IIOP endpoint is: `iiop://hostname:port' Sets of endpoints may be specified using multiple -ORBEndpoint options or by delimiting endpoints with a semi-colon (`;'). For example, `-ORBEndpoint iiop://localhost:9999 -ORBEndpoint uiop:///tmp/mylocalsock -ORBEndpoint shmiop://10002' is equivalent to: `-ORBEndpoint 'iiop://localhost:9999;uiop:///tmp/mylocalsock;shmiop://10002'' Notice the single quotes (') in the latter option specification. Single quotes are needed to prevent the shell from interpreting text after the semi-colon as another command to run. If an endpoint is specified without an addr such as the following: `-ORBEndpoint uiop:// -ORBEndpoint shmiop://' then a default endpoint will be created for the specified protocol. -ORBImplRepoServicePort portspec Specifies which port the Implementation Repository is listening on for multicast requests. By default, the TAO_DEFAULT_IMPLREPO_SERVER_REQUEST_PORT (10018) is used. -ORBInitRef ObjectId=IOR Allows specification of an arbitrary object reference for an initial service. The IOR could be in any one of the following formats: OMG IOR, URL, corbaloc (including uioploc) or file. corbaloc is a multiple end-point IOR understood by ORB::string_to_object() and used as a boot-strapping mechanism by the ORB::resolve_initial_references(). The mappings specified through this argument override the ORB install-time defaults. The file://pathname interprets the contents of the pathname file as an object reference in any of the above formats. -ORBMulticastDiscoveryEndpoint endpoint Specifies the endpoint that should be used for locating the Naming Service through multicast. endpoint is of the form ip-number:port-number (e.g., "tango.cs.wustl.edu:1234" or "128.252.166.57:1234"). If there is no `:' in the endpoint it is assumed to be a port number, with the IP address being INADDR_ANY. -ORBNameServicePort portspec Specifies which port the Naming Service is listening on for multicast requests. By default, the TAO_DEFAULT_NAME_SERVICE_REQUEST_PORT (10013) value is used. -ORBTradingServicePort portspec Specifies to which port the Trading Service is listening on for multicast requests. By default, the TAO_DEFAULT_TRADING_SERVICE_REQUEST_PORT (10016) value is used. -ORBUseIMR {0,1} This argument specifies that for POAs with the PERSISTENT policy, that the TAO Implementation Repository should be used for notification of startup and shutdown and object references should be changed to use the Implementation Repository also. -ORBId orb_name This option allows the name of an ORB to be set to orb_name. The ORBId will be passed to the ORB_init() method to differentiate coexisting ORBs (when there are more than one ORBs). -ORBServerId server_id This option allows setting a name/id to a server to uniquely identify a server to TAO's Implementation Repository. -ORBDaemon Specifies that the ORB should daemonize itself, i.e., run as a background process. This option is only meaningful on OS platforms that support daemonization. ENVIRONMENT VARIABLES Environment variables have a limited use in TAO ORB configuration. The currently supported environment variables are listed below. They are used to specify the IOR and port numbers for three of TAO's ORB services. NameServicePort Specifies which port the Naming Service is listening on for multicast requests. TradingServicePort Specifies which port the Trading Service is listening on for multicast requests. ImplRepoServicePort Specifies which port the Implementation Repository is listening on for multicast requests. In addition to being able to define the port where these known services are listening for multicast requests, as above, it is possible to set an environment variable that specifies the IOR of any named service. For example NameServiceIOR=which, TradingServiceIOR=which, ImplRepoServiceIOR=which, MyServiceIOR=which. This will have a similar effect to defining an -ORBInitRef value on the command line (see above). Any value set as a command line -ORBInitRef option will override any value set as an environment variable for the same service name. In general, setting environment variables is not particularly portable or convenient, which is why users can also set these options via command-line options. AUTHOR &username; &useremail; debian/libtao-tkresource-2.0.3.install0000664000000000000000000000003712224747277014672 0ustar usr/lib/libTAO_TkResource-*.so debian/libace-inet-ssl-6.0.3.install0000664000000000000000000000003512224747277014211 0ustar usr/lib/libACE_INet_SSL-*.so debian/ace-gperf.install0000664000000000000000000000006112224735417012415 0ustar usr/bin/ace_gperf usr/share/man/man1/ace_gperf.1 debian/compat0000664000000000000000000000000212224735517010376 0ustar 9 debian/config.h0000664000000000000000000000131512224735512010611 0ustar // $Id$ #ifndef ACE_CONFIG_H_INCLUDED #define ACE_CONFIG_H_INCLUDED #ifdef __FreeBSD_kernel__ #include "config-kfreebsd.h" #elif defined(__GNU__) #include "config-hurd.h" #else // assume linux /* * Macros that were enabled in Debian are stored here. * * Rationale: those were captured in the generated libraries on * compilation; hence the same values must be used when including * ACE+TAO headers, to avoid unexpected results. */ #ifndef ACE_HAS_IPV6 #define ACE_HAS_IPV6 1 #endif #ifndef ACE_USES_IPV4_IPV6_MIGRATION #define ACE_USES_IPV4_IPV6_MIGRATION 1 #endif #ifndef __ACE_INLINE__ #define __ACE_INLINE__ #endif #include "config-linux.h" #endif // __FreeBSD_version #endif /* ACE_CONFIG_H_INCLUDED */ debian/TOREMOVE0000664000000000000000000000170012224735512010354 0ustar TAO/orbsvcs/orbsvcs/LB_ORTS.cpp TAO/orbsvcs/orbsvcs/SecurityLevel3S.cpp TAO/orbsvcs/orbsvcs/SecurityLevel3S.h TAO/orbsvcs/orbsvcs/RtecEventCommS.inl TAO/orbsvcs/orbsvcs/RtecUDPAdminS_T.h TAO/orbsvcs/orbsvcs/RtecEventChannelAdminS_T.h TAO/orbsvcs/orbsvcs/RtecEventCommS.cpp TAO/orbsvcs/orbsvcs/GSSUPS.cpp TAO/orbsvcs/orbsvcs/RtecEventChannelAdminS.inl TAO/orbsvcs/orbsvcs/GSSUPS.h TAO/orbsvcs/orbsvcs/RtecDefaultEventDataS.h TAO/orbsvcs/orbsvcs/RtecEventCommS.h TAO/orbsvcs/orbsvcs/RtecUDPAdminS.cpp TAO/orbsvcs/orbsvcs/RtecEventChannelAdminS.cpp TAO/orbsvcs/orbsvcs/RtecDefaultEventDataS_T.h TAO/orbsvcs/orbsvcs/RtecDefaultEventDataS.inl TAO/orbsvcs/orbsvcs/CSIIOPS.cpp TAO/orbsvcs/orbsvcs/RtecEventChannelAdminS.h TAO/orbsvcs/orbsvcs/RtecUDPAdminS.inl TAO/orbsvcs/orbsvcs/RtecEventCommS_T.h TAO/orbsvcs/orbsvcs/CSIIOPS.h TAO/orbsvcs/orbsvcs/RtecDefaultEventDataS.cpp TAO/orbsvcs/orbsvcs/CSIS.h TAO/orbsvcs/orbsvcs/CSIS.cpp TAO/orbsvcs/orbsvcs/RtecUDPAdminS.h debian/libace-foxreactor-6.0.3.install0000664000000000000000000000003712224747277014631 0ustar usr/lib/libACE_FoxReactor-*.so debian/tao_nslist.sgml0000664000000000000000000001263412224735420012242 0ustar TAO_ORB_Options1"> tao_cosnaming1"> tao_cosnaming"> tao_nsdel1"> tao_nsadd1"> ]> TAO_NSLIST 1 &applname; Naming Service listing utility. SYNOPSIS &applname; -ORBoptions OPTION DESCRIPTION &applname; lists the current entries in the NamingService; in a nicely formatted manner. When invoked without arguments &applname; displays the contents of the default NamingService, including the protocol and endpoint of each object reference. &applname; requires a running NamingService. OPTIONS -ORBoptions The program follows the usual TAO ORB command line syntax. See &man_tao_orb_options;. --nsior Display the naming service IOR and exit. This can be used to locate the TAO NameService for non-TAO applications and excludes using any other options. --ns IOR Use given IOR for NamingService. --ior Print the contents of the NamingService, including the IOR of each reference entry and the IOR of the NameService itself. --ctxior Print additionally the IORs of any subcontexts found within NamingService. --tree character Print tree of object registered in NamingService using character for drawing tramlines, defaults to "|" . --node character Print tree of object registered in NamingService using character for drawing nodes, defaults to "+" . --noloops Inhibit drawing of naming context loops. --name name Lists sub-set of name, defaults to root. --ctxsep character Set context separation character, defaults to "/". --kindsep character Set ID/Kind separation character, defaults to ".". --max number Set limit of displayed sub-context depth to number. --rtt seconds Set the relative round trip timeout policy to seconds. SEE ALSO &seealso; AUTHOR Thomas Lockhart<Thomas.Lockhart@jpl.nasa.gov> Simon Massey <sma@prismtech.com> debian/libace-foxreactor-dev.install0000664000000000000000000000013412224735420014724 0ustar usr/lib/libACE_FoxReactor.so usr/include/ace/FoxReactor usr/lib/pkgconfig/ACE_FoxReactor.pc debian/ace-netsvcs.doc-base0000664000000000000000000000051712224735517013015 0ustar Document: ace-netsvcs Title: ACE network services Author: Douglas C. Schmidt and his research group Abstract: This document describes the ACE network services: naming, time, token, and logging services. Section: Programming/C++ Format: html Index: /usr/share/doc/ace-netsvcs/ACE-netsvcs.html Files: /usr/share/doc/ace-netsvcs/*.html debian/ace-netsvcs.install0000664000000000000000000000014012224735512012771 0ustar ../../netsvcs/servers/ace_netsvcs usr/bin ../../netsvcs/servers/svc.conf* usr/share/ace-netsvcs debian/libtao-foxresource-dev.install0000664000000000000000000000007212224735407015155 0ustar usr/lib/libTAO_FoxResource.so usr/include/tao/FoxResource debian/tao-cosnaming.docs0000664000000000000000000000004212224735512012600 0ustar TAO/orbsvcs/Naming_Service/README debian/tao_tls_event.sgml0000664000000000000000000000530512224735417012734 0ustar TAO_ORB_Options1"> tao_cosevent1"> tao_tls_basic1"> tao_tls_notify1"> tao_tls_rtevent1"> tao_cosnaming1"> tao_cosnaming"> tao_tls_event"> <d.hanvey@qub.ac.uk>"> ]> TAO_TLS_EVENT 1 &applname; TAO Event Telecom Log Service SYNOPSIS &applname; -ORBoptions DESCRIPTION &applname; is an implementation of the Telecom Log Service that integrates with the Event Service. The Telecom Log Service specification may be found on the OMG website at . &applname; requires a running &tao_cosnaming; and registers with it as `EventLogFactory'. OPTIONS The program follows the usual TAO ORB command line syntax. See &man_tao_orb_options;. BUGS Currently all Logs records are stored in memory. SEE ALSO &seealso; AUTHOR &username; &useremail; debian/tao-scheduling.install0000664000000000000000000000006412224735434013474 0ustar usr/bin/tao_cosscheduling usr/bin/tao_dump_schedule debian/tao-imr.install0000664000000000000000000000010212224735434012127 0ustar usr/bin/tao_imr_locator usr/bin/tao_imr_activator usr/bin/tao_imr debian/libace-ssl-dev.install0000664000000000000000000000010712224735420013351 0ustar usr/include/ace/SSL usr/lib/libACE_SSL.so usr/lib/pkgconfig/ACE_SSL.pc debian/libace-dev.install0000664000000000000000000000151212224735523012557 0ustar ../../bin/generate_export_file.pl usr/lib/ace/bin ../../bin/split-cpp.pl usr/lib/ace/bin ../../bin/g++dep usr/lib/ace/bin ../../bin/add_rel_link.sh usr/lib/ace/bin ../../bin/depgen.pl usr/lib/ace/bin ../../bin/DependencyGenerator usr/lib/ace/bin ../../include usr/lib/ace ../../include/makeinclude/platform_macros.GNU usr/lib/ace/include/makeinclude usr/include/ace/*.h usr/include/ace/*.inl usr/include/ace/*.cpp usr/include/ace/os_include usr/lib/libACE.so usr/include/ace/ETCL/*.h usr/include/ace/ETCL/*.inl usr/include/ace/Monitor_Control/*.h usr/lib/libACE_ETCL_Parser.so usr/lib/libACE_Monitor_Control.so usr/lib/libACE_ETCL.so usr/lib/pkgconfig/ACE.pc usr/lib/pkgconfig/ACE_ETCL.pc usr/lib/pkgconfig/ACE_ETCL_Parser.pc debian/tao-utils.docs0000664000000000000000000000012512224735512011764 0ustar TAO/utils/nslist/README.nslist TAO/utils/catior/README.catior TAO/utils/catior/test debian/ACE-DPKG.mwc0000664000000000000000000000062212224735512011016 0ustar // $Id$ workspace { exclude { .pc TAO performance-tests examples ACEXML/examples ASNMP tests Kokyu/tests ACEXML/tests apps/gperf/tests apps/drwho apps/Gateway apps/AWS apps/JAWS apps/JAWS2 apps/JAWS3 apps/mkcsregdb apps/soreduce websvcs contrib protocols/tests protocols/examples netsvcs/clients } } debian/libace-tmcast-6.0.3.install0000664000000000000000000000003312224747277013744 0ustar usr/lib/libACE_TMCast-*.so debian/libtao-qtresource-2.0.3.install0000664000000000000000000000003712224747277014700 0ustar usr/lib/libTAO_QtResource-*.so debian/default.features0000664000000000000000000000104612224735417012364 0ustar // Misc acexml = 1 ace_svcconf = 1 ace_token = 1 ssl = 1 ipv6 = 1 exceptions = 1 // GUI reactors xt = 1 ace_xtreactor = 1 tao_xtresource = 1 tk = 1 ace_tkreactor = 1 tao_tkresource = 1 fl = 1 ace_flreactor = 1 tao_flresource = 1 qt = 1 qt4 = 1 ace_qtreactor = 1 tao_qtresource = 1 fox = 1 ace_foxreactor = 1 tao_foxresource = 1 // ZIOP zlib = 1 zzip = 1 bzip2 = 1 lzo1 = 1 debian/libnetsvcs-dev.docs0000664000000000000000000000004712224735512012776 0ustar netsvcs/lib/README PROBLEM-REPORT-FORM debian/tao-tls.docs0000664000000000000000000000004312224735512011425 0ustar TAO/orbsvcs/Logging_Service/README debian/tao_idl0000775000000000000000000000017112224735512010533 0ustar #!/bin/sh ACE_ROOT=/usr/lib/ace; export ACE_ROOT; TAO_ROOT=$ACE_ROOT/TAO; export TAO_ROOT; exec $TAO_ROOT/tao_idl "$@" debian/tao-ft.docs0000664000000000000000000000005112224735512011233 0ustar TAO/orbsvcs/FT_ReplicationManager/README debian/tao-utils.install0000664000000000000000000000011212224735523012500 0ustar usr/bin/tao_nsadd usr/bin/tao_nsdel usr/bin/tao_nslist usr/bin/tao_catior debian/libtao-xtresource-dev.install0000664000000000000000000000007012224735374015015 0ustar usr/lib/libTAO_XtResource.so usr/include/tao/XtResource debian/libace-ssl-6.0.3.NEWS0000664000000000000000000000072412224747277012367 0ustar ace (6.0.1-2) unstable; urgency=low As of ace 6.0.1-2, SSLv2 support was removed from Debian ACE+TAO packages. This follows change introduced in openssl 1.0.0c-2. WARNING: it means existing ACE-based software will default to SSL v3 instead of SSL v2 without warning. Recompiling software explicitly using SSL v2 will fail since the ACE_SSL_Context::SSLv2_* enums got removed. -- Thomas Girard Sat, 11 Jun 2011 18:51:20 +0200 debian/libacexml-dev.install0000664000000000000000000000033412224735421013276 0ustar usr/include/ACEXML usr/lib/libACEXML.so usr/lib/libACEXML_Parser.so usr/lib/libACEXML_XML_Svc_Conf_Parser.so usr/lib/pkgconfig/ACEXML.pc usr/lib/pkgconfig/ACEXML_XML_Svc_Conf_Parser.pc usr/lib/pkgconfig/ACEXML_Parser.pc debian/libace-qtreactor-6.0.3.install0000664000000000000000000000003612224747277014460 0ustar usr/lib/libACE_QtReactor-*.so debian/tao_tls_basic.sgml0000664000000000000000000000502512224735417012673 0ustar TAO_ORB_Options1"> tao_tls_notify1"> tao_tls_event1"> tao_tls_rtevent1"> tao_cosnaming1"> tao_cos_naming"> tao_tls_basic"> <d.hanvey@qub.ac.uk>"> ]> TAO_TLS_BASIC 1 &applname; TAO Basic Telecom Log Service SYNOPSIS &applname; -ORBoptions DESCRIPTION &applname; is an event-unaware implementation of the Telecom Log Service. The Telecom Log Service specification may be found on the OMG website at . &applname; requires a running &tao_cosnaming; and registers with it as `BasicLogFactory'. OPTIONS The program follows the usual TAO ORB command line syntax. See &man_tao_orb_options;. BUGS Currently all Logs records are stored in memory. SEE ALSO &seealso; AUTHOR &username; &useremail; debian/libkokyu-dev.install0000664000000000000000000000010112224735420013156 0ustar usr/include/Kokyu usr/lib/libKokyu.so usr/lib/pkgconfig/Kokyu.pc debian/libkokyu-6.0.3.install0000664000000000000000000000002612224747277013067 0ustar usr/lib/libKokyu-*.so debian/libtao-flresource-2.0.3.install0000664000000000000000000000003712224747277014655 0ustar usr/lib/libTAO_FlResource-*.so debian/tao_tls_rtevent.sgml0000664000000000000000000000531512224735417013303 0ustar TAO_ORB_Options1"> tao_cosevent1"> tao_tls_basic1"> tao_tls_notify1"> tao_tls_event1"> tao_cosnaming1"> tao_cosnaming"> tao_tls_rtevent"> <d.hanvey@qub.ac.uk>"> ]> TAO_TLS_RTEVENT 1 &applname; TAO RTEvent Telecom Log Service SYNOPSIS &applname; -ORBoptions DESCRIPTION &applname; is an implementation of the Telecom Log Service that integrates with the RTEvent Service. The Telecom Log Service specification may be found on the OMG website at . &applname; requires a running &tao_cosnaming; and registers with it as `RTEventLogFactory'. OPTIONS The program follows the usual TAO ORB command line syntax. See &man_tao_orb_options;. BUGS Currently all Logs records are stored in memory. SEE ALSO &seealso; AUTHOR &username; &useremail; debian/tao-load.docs0000664000000000000000000000004012224735512011537 0ustar TAO/orbsvcs/LoadBalancer/README debian/libace-tkreactor-dev.install0000664000000000000000000000013112224735420014543 0ustar usr/lib/libACE_TkReactor.so usr/include/ace/TkReactor usr/lib/pkgconfig/ACE_TkReactor.pc debian/tao-ifr.docs0000664000000000000000000000003712224735512011406 0ustar TAO/orbsvcs/IFR_Service/README debian/libacexml-dev.docs0000664000000000000000000000005212224735512012556 0ustar ACEXML/README ACEXML/docs ACEXML/examples debian/mpc-ace.links0000664000000000000000000000027612224735417011553 0ustar usr/lib/ace/bin/mpc.pl usr/bin/mpc-ace usr/lib/ace/bin/mwc.pl usr/bin/mwc-ace usr/share/man/man1/mpc-ace.1.gz usr/share/man/man1/mwc-ace.1.gz debian/tao-cosnotification.docs0000664000000000000000000000004212224735512014015 0ustar TAO/orbsvcs/Notify_Service/README debian/fix_doxygen.sh0000775000000000000000000000155212224747277012073 0ustar #!/bin/sh # # This script regenerates changes on the Doxygen templates. # set -e export QUILT_PATCHES=debian/patches #quilt pop -a #quilt delete reduce-doxygen-doc.diff quilt new reduce-doxygen-doc.diff for f in $(find $ACE_ROOT -name '*.doxygen') do QUILT_PATCHES=debian/patches quilt add $f sed -e 's#GENERATE_HTMLHELP = YES#GENERATE_HTMLHELP = NO#' \ -e 's#COLLABORATION_GRAPH = YES#COLLABORATION_GRAPH = NO#' \ -e 's#INCLUDE_GRAPH = YES#INCLUDE_GRAPH = NO#' \ -e 's#INCLUDED_BY_GRAPH = YES#INCLUDED_BY_GRAPH = NO#' \ -e 's#SEARCHENGINE = YES#SEARCHENGINE = NO#' \ -e 's#DOT_MULTI_TARGETS = YES#DOT_MULTI_TARGETS = YES \ DOT_GRAPH_MAX_NODES = 15 \ DOT_IMAGE_FORMAT = png#' < $f > $f.new mv $f.new $f done quilt refresh --no-timestamps --no-index debian/libtao-xtresource-2.0.3.install0000664000000000000000000000003712224747277014707 0ustar usr/lib/libTAO_XtResource-*.so debian/rules0000775000000000000000000000752212224747277010274 0ustar #!/usr/bin/make -f # debian/rules file for ACE+TAO Debian GNU/Linux packages # written February 2002 by Ossama Othman # Modified August 2003 by Brian Nelson # Copyright (C) 2004 Raphael Bossek # Copyright © 2005-2011 Thomas Girard MWCFLAGS := -type gnuace -noreldefs DSO_MAKE_FLAG := versioned_so=2 INSTALL_FLAGS := DESTDIR=$(CURDIR)/debian/tmp INSTALL_PREFIX=/usr install_rpath=0 $(DSO_MAKE_FLAG) MAN1 := debian/ace_netsvcs.1 \ debian/mpc-ace.1 # Where we install every file before calling dh_install DT := debian/tmp DOXYGEN_FILES_TO_REMOVE := -name '*.md5' -o \ -name '*.map' -o \ -name '*.tag' # Package names, used when overriding dh_installchangelogs ALL_PACKAGES := $(shell dh_listpackages) ALL_ACEXML := $(filter libacexml%,$(ALL_PACKAGES)) export ACE_ROOT := $(shell pwd) export MPC_ROOT := $(ACE_ROOT)/MPC export LD_LIBRARY_PATH := $(LD_LIBRARY_PATH):$(ACE_ROOT)/lib export QTDIR := /usr/share/qt4 %: dh $@ # Implement our own configure machinery; it will copy Debian specific # configuration before launching MPC to generate ACE+TAO GNUmakefile .PHONY: configure configure: configure-stamp configure-stamp: cp debian/platform_macros.GNU $(ACE_ROOT)/include/makeinclude cp debian/config*.h $(ACE_ROOT)/ace/ cp debian/default.features $(ACE_ROOT)/bin/MakeProjectCreator/config cp debian/ACE-DPKG.mwc $(ACE_ROOT) cd $(ACE_ROOT) && $(ACE_ROOT)/bin/mwc.pl $(MWCFLAGS) ACE-DPKG.mwc touch $@ override_dh_auto_build-arch: configure-stamp $(MAKE) -C $(ACE_ROOT) $(DSO_MAKE_FLAG) $(FIXUP) override_dh_auto_install-arch: manpages-stamp $(MAKE) -C $(ACE_ROOT) install $(INSTALL_FLAGS) $(FIXUP) mkdir -p $(DT)/usr/share/man/man1 cp $(ACE_ROOT)/apps/gperf/ace_gperf.1 $(DT)/usr/share/man/man1 # Relocate .idl and .pidl files cd $(DT) && for f in $$(find usr/include -name '*.idl' -o -name '*.pidl') ; do \ g=$$(echo $${f%%include*}share/idl/$${f##*usr/include/}) ; \ mkdir -p $$(dirname $$g) ; \ mv $$f $$g ; \ done override_dh_auto_install-indep: override_dh_auto_clean-arch: [ -f $(ACE_ROOT)/GNUmakefile ] && $(MAKE) -C $(ACE_ROOT) realclean $(DSO_MAKE_FLAG) $(FIXUP) || true find $(ACE_ROOT) -name 'GNUmakefile*' -o -name '.depend.*' | xargs -r rm rm -f $(ACE_ROOT)/include/makeinclude/platform_macros.GNU rm -f $(ACE_ROOT)/bin/MakeProjectCreator/config/default.features rm -f $(ACE_ROOT)/ace/config.h $(ACE_ROOT)/ace/config-hurd.h rm -f $(ACE_ROOT)/ACE-DPKG.mwc rm -f debian/*.1 debian/mpc-ace.sgml rm -f *-stamp # Remove stubs that get generated during TAO compilation but for some reason # are not removed on make realclean rm -f `cat debian/TOREMOVE` override_dh_auto_clean-indep: rm -Rf $(ACE_ROOT)/html/libace-doc $(ACE_ROOT)/html/libacexml-doc override_dh_compress: dh_compress -Xexamples # Add --list-missing to make sure we don't miss new binaries override_dh_install: dh_install --list-missing # ACE+TAO has different changelogs. Use the right one in every package. override_dh_installchangelogs: dh_installchangelogs -pace-gperf -pgperf-ace apps/gperf/ChangeLog dh_installchangelogs -pmpc-ace MPC/ChangeLog dh_installchangelogs $(addprefix -p,$(ALL_ACEXML)) ACEXML/ChangeLog dh_installchangelogs --remaining-packages ChangeLog override_dh_fixperms: ifneq (,$(filter libace-doc, $(shell dh_listpackages))) find debian -name '*.pl' | xargs -r sed -i -e '1i#!/usr/bin/perl' endif dh_fixperms debian/mpc-ace.sgml: MPC/docs/MPC.sgml sed -e 's/mpc\.pl/mpc-ace/g' -e 's/mwc\.pl/mwc-ace/g' $< > $@ debian/%.1: debian/%.sgml docbook-to-man $< > $@ override_dh_auto_build-indep: cd $(ACE_ROOT) && bin/generate_doxygen.pl -is_release -exclude_ciao -exclude_dance find $(ACE_ROOT)/html $(DOXYGEN_FILES_TO_REMOVE) | xargs -r rm -f .PHONY: manpages manpages: manpages-stamp manpages-stamp: $(MAN1) touch $@ debian/libtao-orbsvcs-dev.install0000664000000000000000000000777112224735421014303 0ustar usr/include/orbsvcs usr/share/idl/orbsvcs usr/lib/libTAO_AV.so usr/lib/libTAO_CosConcurrency.so usr/lib/libTAO_CosConcurrency_Skel.so usr/lib/libTAO_CosConcurrency_Serv.so usr/lib/libTAO_CosEvent.so usr/lib/libTAO_CosEvent_Skel.so usr/lib/libTAO_CosEvent_Serv.so usr/lib/libTAO_CosLifeCycle.so usr/lib/libTAO_CosLoadBalancing.so usr/lib/libTAO_CosNaming.so usr/lib/libTAO_CosNaming_Skel.so usr/lib/libTAO_CosNaming_Serv.so usr/lib/libTAO_CosNotification.so usr/lib/libTAO_CosNotification_Persist.so usr/lib/libTAO_CosNotification_Skel.so usr/lib/libTAO_CosNotification_Serv.so usr/lib/libTAO_CosNotification_MC.so usr/lib/libTAO_CosNotification_MC_Ext.so usr/lib/libTAO_CosProperty.so usr/lib/libTAO_CosProperty_Skel.so usr/lib/libTAO_CosProperty_Serv.so usr/lib/libTAO_CosTime.so usr/lib/libTAO_CosTrading.so usr/lib/libTAO_CosTrading_Skel.so usr/lib/libTAO_CosTrading_Serv.so usr/lib/libTAO_DsEventLogAdmin.so usr/lib/libTAO_DsEventLogAdmin_Skel.so usr/lib/libTAO_DsEventLogAdmin_Serv.so usr/lib/libTAO_DsLogAdmin.so usr/lib/libTAO_DsLogAdmin_Skel.so usr/lib/libTAO_DsLogAdmin_Serv.so usr/lib/libTAO_DsNotifyLogAdmin.so usr/lib/libTAO_DsNotifyLogAdmin_Skel.so usr/lib/libTAO_DsNotifyLogAdmin_Serv.so usr/lib/libTAO_FT_ServerORB.so usr/lib/libTAO_FT_ClientORB.so usr/lib/libTAO_FTORB_Utils.so usr/lib/libTAO_FaultTolerance.so usr/lib/libTAO_HTIOP.so usr/lib/libTAO_IFRService.so usr/lib/libTAO_PortableGroup.so usr/lib/libTAO_RTCORBAEvent.so usr/lib/libTAO_RTEvent.so usr/lib/libTAO_RTEvent_Serv.so usr/lib/libTAO_RTEvent_Skel.so usr/lib/libTAO_RTEventLogAdmin.so usr/lib/libTAO_RTEventLogAdmin_Skel.so usr/lib/libTAO_RTEventLogAdmin_Serv.so usr/lib/libTAO_RTKokyuEvent.so usr/lib/libTAO_RTSched.so usr/lib/libTAO_RTSchedEvent.so usr/lib/libTAO_RT_Notification.so usr/lib/libTAO_SSLIOP.so usr/lib/libTAO_Security.so usr/lib/libTAO_Svc_Utils.so usr/lib/libTAO_FTRT_EventChannel.so usr/lib/libTAO_FtRtEvent.so usr/lib/libTAO_FTRT_ClientORB.so usr/lib/libTAO_CosLifeCycle_Skel.so usr/lib/libTAO_Notify_Service.so usr/lib/libTAO_CosTime_Serv.so usr/lib/libTAO_CosTime_Skel.so usr/lib/libTAO_Catior_i.so usr/lib/libTAO_ReplicationManagerLib.so usr/lib/libTAO_ImR_Activator.so usr/lib/libTAO_ImR_Locator.so usr/lib/libTAO_ImR_Locator_IDL.so usr/lib/libTAO_ImR_Activator_IDL.so usr/lib/pkgconfig/TAO_CosLoadBalancing.pc usr/lib/pkgconfig/TAO_CosConcurrency_Serv.pc usr/lib/pkgconfig/TAO_CosEvent.pc usr/lib/pkgconfig/TAO_DsLogAdmin_Skel.pc usr/lib/pkgconfig/TAO_DsEventLogAdmin.pc usr/lib/pkgconfig/TAO_CosProperty_Skel.pc usr/lib/pkgconfig/TAO_CosEvent_Serv.pc usr/lib/pkgconfig/TAO_CosNotification_Skel.pc usr/lib/pkgconfig/TAO_DsNotifyLogAdmin_Serv.pc usr/lib/pkgconfig/TAO_CosTime_Skel.pc usr/lib/pkgconfig/TAO_RTEventLogAdmin_Skel.pc usr/lib/pkgconfig/TAO_CosProperty.pc usr/lib/pkgconfig/TAO_CosLifeCycle_Skel.pc usr/lib/pkgconfig/TAO_RTEvent_Skel.pc usr/lib/pkgconfig/TAO_FaultTolerance.pc usr/lib/pkgconfig/TAO_RTEvent.pc usr/lib/pkgconfig/TAO_CosNaming.pc usr/lib/pkgconfig/TAO_CosConcurrency_Skel.pc usr/lib/pkgconfig/TAO_FT_ServerORB.pc usr/lib/pkgconfig/TAO_DsLogAdmin.pc usr/lib/pkgconfig/TAO_DsEventLogAdmin_Skel.pc usr/lib/pkgconfig/TAO_FT_ClientORB.pc usr/lib/pkgconfig/TAO_CosTrading_Skel.pc usr/lib/pkgconfig/TAO_CosNotification.pc usr/lib/pkgconfig/TAO_CosTrading.pc usr/lib/pkgconfig/TAO_CosTime_Serv.pc usr/lib/pkgconfig/TAO_CosNaming_Skel.pc usr/lib/pkgconfig/TAO_CosProperty_Serv.pc usr/lib/pkgconfig/TAO_DsNotifyLogAdmin_Skel.pc usr/lib/pkgconfig/TAO_CosEvent_Skel.pc usr/lib/pkgconfig/TAO_CosNotification_Serv.pc usr/lib/pkgconfig/TAO_FTORB_Utils.pc usr/lib/pkgconfig/TAO_CosConcurrency.pc usr/lib/pkgconfig/TAO_DsNotifyLogAdmin.pc usr/lib/pkgconfig/TAO_CosNaming_Serv.pc usr/lib/pkgconfig/TAO_DsLogAdmin_Serv.pc usr/lib/pkgconfig/TAO_CosTime.pc usr/lib/pkgconfig/TAO_RTEvent_Serv.pc usr/lib/pkgconfig/TAO_CosTrading_Serv.pc usr/lib/pkgconfig/TAO_CosLifeCycle.pc usr/lib/pkgconfig/TAO_DsEventLogAdmin_Serv.pc usr/lib/pkgconfig/TAO_RTEventLogAdmin.pc usr/lib/pkgconfig/TAO_RTEventLogAdmin_Serv.pc usr/lib/pkgconfig/TAO_Svc_Utils.pc usr/lib/pkgconfig/TAO_PortableGroup.pc debian/libace-6.0.3.docs0000664000000000000000000000011012224747277011731 0ustar README VERSION AUTHORS docs/FAQ PROBLEM-REPORT-FORM THANKS VERSION NEWS debian/watch0000664000000000000000000000013312224735512010221 0ustar version=3 ftp://download.dre.vanderbilt.edu/previous_versions/ACE\+TAO-src-(.*)\.tar\.bz2 debian/libtao-doc.docs0000664000000000000000000000003312224735517012063 0ustar TAO/docs html/libtao-doc/* debian/libtao-qtresource-dev.install0000664000000000000000000000007012224735374015006 0ustar usr/lib/libTAO_QtResource.so usr/include/tao/QtResource debian/tao-cosevent.install0000664000000000000000000000002512224735417013173 0ustar usr/bin/tao_cosevent debian/libace-inet-ssl-dev.install0000664000000000000000000000016512224735441014315 0ustar usr/include/ace/INet/*SSL* usr/include/ace/INet/*HTTPS* usr/lib/libACE_INet_SSL.so usr/lib/pkgconfig/ACE_INet_SSL.pc debian/libace-htbp-dev.docs0000664000000000000000000000003212224735512012766 0ustar protocols/ace/HTBP/README debian/libace-rmcast-dev.docs0000664000000000000000000000003412224735512013324 0ustar protocols/ace/RMCast/README debian/libtao-dev.install0000664000000000000000000000672212224747277012633 0ustar usr/include/tao/*.h usr/include/tao/*.inl usr/include/tao/*.cpp usr/share/idl/tao usr/lib/libTAO.so usr/include/tao/AnyTypeCode usr/lib/libTAO_AnyTypeCode.so usr/include/tao/BiDir_GIOP usr/lib/libTAO_BiDirGIOP.so usr/include/tao/CodecFactory usr/lib/libTAO_CodecFactory.so usr/include/tao/Codeset usr/lib/libTAO_Codeset.so usr/include/tao/Compression usr/lib/libTAO_Compression.so usr/include/tao/CSD_Framework usr/lib/libTAO_CSD_Framework.so usr/include/tao/CSD_ThreadPool usr/lib/libTAO_CSD_ThreadPool.so usr/include/tao/DynamicAny usr/lib/libTAO_DynamicAny.so usr/include/tao/DynamicInterface usr/lib/libTAO_DynamicInterface.so usr/include/tao/EndpointPolicy usr/lib/libTAO_EndpointPolicy.so usr/include/tao/IFR_Client usr/lib/libTAO_IFR_Client.so usr/include/tao/ImR_Client usr/lib/libTAO_ImR_Client.so usr/include/tao/IORInterceptor usr/lib/libTAO_IORInterceptor.so usr/include/tao/IORManipulation usr/lib/libTAO_IORManip.so usr/include/tao/IORTable usr/lib/libTAO_IORTable.so usr/include/tao/Messaging usr/lib/libTAO_Messaging.so usr/include/tao/ObjRefTemplate usr/lib/libTAO_ObjRefTemplate.so usr/include/tao/PI usr/lib/libTAO_PI.so usr/include/tao/PI_Server usr/lib/libTAO_PI_Server.so usr/include/tao/PortableServer usr/lib/libTAO_PortableServer.so usr/include/tao/RTCORBA usr/lib/libTAO_RTCORBA.so usr/include/tao/RTPortableServer usr/lib/libTAO_RTPortableServer.so usr/include/tao/RTScheduling usr/lib/libTAO_RTScheduler.so usr/include/tao/SmartProxies usr/lib/libTAO_SmartProxies.so usr/include/tao/Strategies usr/lib/libTAO_Strategies.so usr/include/tao/TransportCurrent usr/lib/libTAO_TC.so usr/lib/libTAO_TC_IIOP.so usr/include/tao/TypeCodeFactory usr/lib/libTAO_TypeCodeFactory.so usr/include/tao/Utils usr/lib/libTAO_Utils.so usr/include/tao/Valuetype usr/lib/libTAO_Valuetype.so usr/lib/libTAO_DiffServPolicy.so usr/include/tao/DiffServPolicy usr/include/tao/ZIOP usr/lib/libTAO_ZIOP.so usr/lib/libTAO_ZlibCompressor.so usr/lib/libTAO_Bzip2Compressor.so usr/lib/libTAO_LzoCompressor.so usr/include/tao/ETCL usr/lib/libTAO_ETCL.so usr/include/tao/Monitor usr/lib/libTAO_Monitor.so ../../TAO/MPC/config usr/lib/ace/TAO/MPC ../../TAO/rules.tao.GNU usr/lib/ace/TAO usr/lib/libTAO_IFR_BE.so usr/lib/libTAO_IDL_FE.so usr/lib/libTAO_IDL_BE.so usr/lib/pkgconfig/TAO_RTScheduler.pc usr/lib/pkgconfig/TAO_DynamicInterface.pc usr/lib/pkgconfig/TAO_ZlibCompressor.pc usr/lib/pkgconfig/TAO_AnyTypeCode.pc usr/lib/pkgconfig/TAO_Bzip2Compressor.pc usr/lib/pkgconfig/TAO_LzoCompressor.pc usr/lib/pkgconfig/TAO_Valuetype.pc usr/lib/pkgconfig/TAO_BiDirGIOP.pc usr/lib/pkgconfig/TAO_IORInterceptor.pc usr/lib/pkgconfig/TAO_SmartProxies.pc usr/lib/pkgconfig/TAO_PortableServer.pc usr/lib/pkgconfig/TAO_TypeCodeFactory.pc usr/lib/pkgconfig/TAO.pc usr/lib/pkgconfig/TAO_Messaging.pc usr/lib/pkgconfig/TAO_CSD_Framework.pc usr/lib/pkgconfig/TAO_PI_Server.pc usr/lib/pkgconfig/TAO_ObjRefTemplate.pc usr/lib/pkgconfig/TAO_DynamicAny.pc usr/lib/pkgconfig/TAO_Monitor.pc usr/lib/pkgconfig/TAO_Compression.pc usr/lib/pkgconfig/TAO_Strategies.pc usr/lib/pkgconfig/TAO_IORTable.pc usr/lib/pkgconfig/TAO_CSD_ThreadPool.pc usr/lib/pkgconfig/TAO_CodecFactory.pc usr/lib/pkgconfig/TAO_EndpointPolicy.pc usr/lib/pkgconfig/TAO_IORManip.pc usr/lib/pkgconfig/TAO_ZIOP.pc usr/lib/pkgconfig/TAO_DiffServPolicy.pc usr/lib/pkgconfig/TAO_PI.pc usr/lib/pkgconfig/TAO_Utils.pc usr/lib/pkgconfig/TAO_IFR_Client.pc usr/lib/pkgconfig/TAO_ETCL.pc usr/lib/pkgconfig/TAO_RTPortableServer.pc usr/lib/pkgconfig/TAO_RTCORBA.pc usr/lib/pkgconfig/TAO_ImR_Client.pc debian/libnetsvcs-6.0.3.docs0000664000000000000000000000004712224747277012677 0ustar netsvcs/lib/README PROBLEM-REPORT-FORM