Add anna_ to libraries and examples
authorEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Mon, 19 Jun 2017 09:41:53 +0000 (11:41 +0200)
committerEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Mon, 19 Jun 2017 09:41:53 +0000 (11:41 +0200)
61 files changed:
CMakeLists.txt
example/comm/blocker/libraries.txt
example/comm/brkClient/libraries.txt
example/comm/client/libraries.txt
example/comm/codec/libraries.txt
example/comm/datagramKClient/libraries.txt
example/comm/datagramRServer/libraries.txt
example/comm/irkClient/libraries.txt
example/comm/kClient/libraries.txt
example/comm/kxClient/libraries.txt
example/comm/largeBinaryCodec/libraries.txt
example/comm/rServer/libraries.txt
example/comm/rrClient/libraries.txt
example/comm/rrkClient/libraries.txt
example/comm/server/libraries.txt
example/core/genLogon/libraries.txt
example/core/ipManaging/libraries.txt
example/core/recycler/libraries.txt
example/core/regularExpression/libraries.txt
example/core/selectiveTracing/libraries.txt
example/core/showLogon/libraries.txt
example/core/sort/libraries.txt
example/core/sortName/libraries.txt
example/core/thread/libraries.txt
example/core/threadManager/libraries.txt
example/core/trace/libraries.txt
example/core/zBlock/libraries.txt
example/dbms.mysql/xInsert/libraries.txt
example/dbms.mysql/xSelect/libraries.txt
example/dbos/workdir/libraries.txt
example/diameter/batchConverter/libraries.txt
example/diameter/launcher/deploy.sh
example/diameter/launcher/deployments/st-client/program.sh
example/diameter/launcher/libraries.txt
example/diameter/launcher/resources/scripts/select_dynlib.sh
example/diameter/pcapDecoder/libraries.txt
example/diameter/stackManagement/libraries.txt
example/diameter/tme/libraries.txt
example/http/buffer/libraries.txt
example/http/client/libraries.txt
example/http/echo/libraries.txt
example/http/kClient/libraries.txt
example/http/rServer/libraries.txt
example/http/server/libraries.txt
example/http/wims20Client/libraries.txt
example/http/wims20RServer/libraries.txt
example/http/wims20XClient/libraries.txt
example/http/wims20XRServer/libraries.txt
example/http/xmlClient/libraries.txt
example/http/xmlRServer/libraries.txt
example/http/xmlSender/libraries.txt
example/io/reader/libraries.txt
example/ldap/tSearch/libraries.txt
example/time/conversor/libraries.txt
example/timex/ArithmeticHTTPServer/libraries.txt
example/xml/xmlBasic/libraries.txt
example/xml/xmlBinary/libraries.txt
example/xml/xpath/libraries.txt
test/config/libraries.txt
test/core/libraries.txt
test/time/libraries.txt

index ef993e9..576325c 100644 (file)
@@ -117,8 +117,8 @@ SUBDIRLIST(SUBDIRS ${CMAKE_CURRENT_SOURCE_DIR}/source)
 FOREACH(subdir ${SUBDIRS})
   message(STATUS "Processing library at: source/${subdir}")
   file(GLOB_RECURSE SRCS source/${subdir}/*.cpp)
 FOREACH(subdir ${SUBDIRS})
   message(STATUS "Processing library at: source/${subdir}")
   file(GLOB_RECURSE SRCS source/${subdir}/*.cpp)
-  add_library(${subdir}_static STATIC ${SRCS})
-  add_library(${subdir}_shared SHARED ${SRCS})
+  add_library(anna_${subdir}_static STATIC ${SRCS})
+  add_library(anna_${subdir}_shared SHARED ${SRCS})
 ENDFOREACH()
 
 # <dynamic>
 ENDFOREACH()
 
 # <dynamic>
@@ -131,20 +131,15 @@ FOREACH(procedure ${DYNAMIC_PROCEDURES})
 
   message(STATUS "Processing dynamic library at: dynamic/launcher/${rel}")
   file(GLOB_RECURSE SRCS dynamic/launcher/${rel}/*.cpp)
 
   message(STATUS "Processing dynamic library at: dynamic/launcher/${rel}")
   file(GLOB_RECURSE SRCS dynamic/launcher/${rel}/*.cpp)
-  add_library(launcher_procedure_${libpath}_shared SHARED ${SRCS})
+  add_library(anna_launcher_procedure_${libpath}_shared SHARED ${SRCS})
 
   set(target_dirname build/${CMAKE_BUILD_TYPE}/lib/dynamic/launcher/${rel})
 
 
   set(target_dirname build/${CMAKE_BUILD_TYPE}/lib/dynamic/launcher/${rel})
 
-  set(target_basename launcher_procedure_${libpath}_shared)
+  set(target_basename anna_launcher_procedure_${libpath}_shared)
   set_target_properties(${target_basename} PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${target_dirname})
   #file(RENAME ${target_dirname}/lib${target_basename}.so ${target_dirname}/libprocedure.so)
 ENDFOREACH()
 
   set_target_properties(${target_basename} PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${target_dirname})
   #file(RENAME ${target_dirname}/lib${target_basename}.so ${target_dirname}/libprocedure.so)
 ENDFOREACH()
 
-# Linking example:
-#file(GLOB_RECURSE SRCS ${CMAKE_CURRENT_SOURCE_DIR}/example/core/genLogon/*.cpp)
-#add_executable(genLogon ${SRCS})
-#target_link_libraries(genLogon core_static app_static core_static test_static xml_static io_static crypto xml2 rt)
-
 # Generalization:
 # <example>
 SUBDIRLIST(MODULES ${CMAKE_CURRENT_SOURCE_DIR}/example)
 # Generalization:
 # <example>
 SUBDIRLIST(MODULES ${CMAKE_CURRENT_SOURCE_DIR}/example)
@@ -157,7 +152,7 @@ FOREACH(module ${MODULES})
     file(GLOB_RECURSE SRCS ${CMAKE_CURRENT_SOURCE_DIR}/example/${module}/${subdir}/*.cpp)
 
     # Executable
     file(GLOB_RECURSE SRCS ${CMAKE_CURRENT_SOURCE_DIR}/example/${module}/${subdir}/*.cpp)
 
     # Executable
-    set(target "${module}_${subdir}")
+    set(target "anna_${module}_${subdir}")
     add_executable(${target} "${SRCS}")
     set_target_properties(${target} PROPERTIES LINKER_LANGUAGE CXX)
     set(libraries_file "${CMAKE_CURRENT_SOURCE_DIR}/example/${module}/${subdir}/libraries.txt")
     add_executable(${target} "${SRCS}")
     set_target_properties(${target} PROPERTIES LINKER_LANGUAGE CXX)
     set(libraries_file "${CMAKE_CURRENT_SOURCE_DIR}/example/${module}/${subdir}/libraries.txt")
@@ -201,7 +196,7 @@ FOREACH(module ${MODULES})
   file(GLOB_RECURSE SRCS ${CMAKE_CURRENT_SOURCE_DIR}/test/${module}/*.cpp)
 
   # Executable
   file(GLOB_RECURSE SRCS ${CMAKE_CURRENT_SOURCE_DIR}/test/${module}/*.cpp)
 
   # Executable
-  set(target "test_${module}")
+  set(target "anna_test_${module}")
   add_executable(${target} "${SRCS}")
   target_link_libraries(${target} ${GTEST_BOTH_LIBRARIES} pthread)
   set(libraries_file "${CMAKE_CURRENT_SOURCE_DIR}/test/${module}/libraries.txt")
   add_executable(${target} "${SRCS}")
   target_link_libraries(${target} ${GTEST_BOTH_LIBRARIES} pthread)
   set(libraries_file "${CMAKE_CURRENT_SOURCE_DIR}/test/${module}/libraries.txt")
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 6f0d1f3..a0c8118 100644 (file)
@@ -1,8 +1,8 @@
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 crypto
 rt
 xml2
 crypto
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index f167a29..0faeb38 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index afef9e3..102011c 100644 (file)
@@ -1,5 +1,5 @@
-io_static
-core_static
-xml_static
+anna_io_static
+anna_core_static
+anna_xml_static
 rt
 xml2
 rt
 xml2
index 22da4df..6ca4cd7 100644 (file)
@@ -1,4 +1,4 @@
-core_static
-xml_static
+anna_core_static
+anna_xml_static
 rt
 xml2
 rt
 xml2
index 0fee661..0a070a2 100644 (file)
@@ -1,10 +1,10 @@
-comm_static
-timex_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index feb5872..ac6d68f 100644 (file)
@@ -1,6 +1,6 @@
-io_static
-core_static
-xml_static
+anna_io_static
+anna_core_static
+anna_xml_static
 z
 rt
 xml2
 z
 rt
 xml2
index e856851..9806884 100644 (file)
@@ -1,10 +1,10 @@
-dbms.mysql_static
-dbms_static
-comm_static
-app_static
-xml_static
-io_static
-core_static
+anna_dbms.mysql_static
+anna_dbms_static
+anna_comm_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 mysqlclient
 rt
 xml2
 mysqlclient
 rt
 xml2
index e856851..9806884 100644 (file)
@@ -1,10 +1,10 @@
-dbms.mysql_static
-dbms_static
-comm_static
-app_static
-xml_static
-io_static
-core_static
+anna_dbms.mysql_static
+anna_dbms_static
+anna_comm_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 mysqlclient
 rt
 xml2
 mysqlclient
 rt
 xml2
index bb96015..5a99acb 100644 (file)
@@ -1,9 +1,9 @@
-dbos_static
-dbms_static
-comm_static
-app_static
-xml_static
-io_static
-core_static
+anna_dbos_static
+anna_dbms_static
+anna_comm_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 39a2ba5..00dca0e 100644 (file)
@@ -1,7 +1,7 @@
-diameter_static
-time_static
-xml_static
-io_static
-core_static
+anna_diameter_static
+anna_time_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 766273a..c5a5101 100755 (executable)
@@ -94,8 +94,8 @@ BIN_DIR=$PROJECT_ROOT/build/$VARIANT/bin
 LIB_DIR=$PROJECT_ROOT/build/$VARIANT/lib
 
 # Main executables:
 LIB_DIR=$PROJECT_ROOT/build/$VARIANT/lib
 
 # Main executables:
-ADML_EXEC=$BIN_DIR/diameter_launcher
-STACKMGMT_EXEC=$BIN_DIR/diameter_stackManagement
+ADML_EXEC=$BIN_DIR/anna_diameter_launcher
+STACKMGMT_EXEC=$BIN_DIR/anna_diameter_stackManagement
 
 [ ! -d $SETUPS_DIR ] && _exit "Diameter stacks not found ($SETUPS_DIR)."
 
 
 [ ! -d $SETUPS_DIR ] && _exit "Diameter stacks not found ($SETUPS_DIR)."
 
@@ -188,7 +188,7 @@ cp $SCR_DIR/resources/scripts/select_dynlib.sh $DPATH/dynlibs/select.sh
 
 # Default dynamic library:
 cd $DPATH/dynlibs
 
 # Default dynamic library:
 cd $DPATH/dynlibs
-ln -s default/liblauncher_procedure_default_shared.so
+ln -s default/libanna_launcher_procedure_default_shared.so
 cd - >/dev/null
 
 # Basic setup:
 cd - >/dev/null
 
 # Basic setup:
index 4d878c0..8c461ac 100755 (executable)
@@ -181,7 +181,7 @@ then
 
 # dynamic programming #################################################################
 else
 
 # dynamic programming #################################################################
 else
-  TESTCASE_DIR=$(readlink -f dynlibs/liblauncher_procedure_default_shared.so | xargs dirname)
+  TESTCASE_DIR=$(readlink -f dynlibs/libanna_launcher_procedure_default_shared.so | xargs dirname)
   DYNAMIC_SUFFIX_FILE=$TESTCASE_DIR/dynamic.suffix
 
   [ ! -f $DYNAMIC_SUFFIX_FILE ] && _exit "Missing '$DYNAMIC_SUFFIX_FILE' file.\nUse 'dynlibs/select.sh' to change the dynamic procedure and restart the ADML instances."
   DYNAMIC_SUFFIX_FILE=$TESTCASE_DIR/dynamic.suffix
 
   [ ! -f $DYNAMIC_SUFFIX_FILE ] && _exit "Missing '$DYNAMIC_SUFFIX_FILE' file.\nUse 'dynlibs/select.sh' to change the dynamic procedure and restart the ADML instances."
index 43bb577..88ac68e 100644 (file)
@@ -1,17 +1,17 @@
-diameter.comm_static
-diameter_static
-time_static
-statistics_static
-http_static
-timex_static
-comm_static
-http_static
-app_static
-xml_static
-launcher_procedure_default_shared
-testing_shared
-io_static
-core_static
+anna_diameter.comm_static
+anna_diameter_static
+anna_time_static
+anna_statistics_static
+anna_http_static
+anna_timex_static
+anna_comm_static
+anna_http_static
+anna_app_static
+anna_xml_static
+anna_launcher_procedure_default_shared
+anna_testing_shared
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 2eabcf5..c1cf52b 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/bash
 #!/bin/bash
-dynamicProcedureLibName=liblauncher_procedure_default_shared.so
+dynamicProcedureLibName=libanna_launcher_procedure_default_shared.so
 echo
 echo "------------------------------------------------"
 echo "Dynamic library selection for launcher procedure"
 echo
 echo "------------------------------------------------"
 echo "Dynamic library selection for launcher procedure"
@@ -13,7 +13,7 @@ then
   echo
   echo "Available options:"
   tmpfile=$(mktemp)
   echo
   echo "Available options:"
   tmpfile=$(mktemp)
-  find . -name "liblauncher_procedure_*_shared.so" > $tmpfile
+  find . -name "libanna_launcher_procedure_*_shared.so" > $tmpfile
   echo
   for line in $(cat $tmpfile); do echo "   $line" ; done
   dflt=$(grep "^./default/" $tmpfile)
   echo
   for line in $(cat $tmpfile); do echo "   $line" ; done
   dflt=$(grep "^./default/" $tmpfile)
index 39a2ba5..00dca0e 100644 (file)
@@ -1,7 +1,7 @@
-diameter_static
-time_static
-xml_static
-io_static
-core_static
+anna_diameter_static
+anna_time_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 39a2ba5..00dca0e 100644 (file)
@@ -1,7 +1,7 @@
-diameter_static
-time_static
-xml_static
-io_static
-core_static
+anna_diameter_static
+anna_time_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 0cab6e6..021d2f8 100644 (file)
@@ -1,8 +1,8 @@
-http_static
-comm_static
-app_static
-xml_static
-io_static
-core_static
+anna_http_static
+anna_comm_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 3d89363..0c849dc 100644 (file)
@@ -1,10 +1,10 @@
-http_static
-comm_static
-timex_static
-app_static
-xml_static
-io_static
-core_static
+anna_http_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 0cab6e6..021d2f8 100644 (file)
@@ -1,8 +1,8 @@
-http_static
-comm_static
-app_static
-xml_static
-io_static
-core_static
+anna_http_static
+anna_comm_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 7e25240..1e55745 100644 (file)
@@ -1,9 +1,9 @@
-http_static
-comm_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_http_static
+anna_comm_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 7e25240..1e55745 100644 (file)
@@ -1,9 +1,9 @@
-http_static
-comm_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_http_static
+anna_comm_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 7e25240..1e55745 100644 (file)
@@ -1,9 +1,9 @@
-http_static
-comm_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_http_static
+anna_comm_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 0cab6e6..021d2f8 100644 (file)
@@ -1,8 +1,8 @@
-http_static
-comm_static
-app_static
-xml_static
-io_static
-core_static
+anna_http_static
+anna_comm_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 0cab6e6..021d2f8 100644 (file)
@@ -1,8 +1,8 @@
-http_static
-comm_static
-app_static
-xml_static
-io_static
-core_static
+anna_http_static
+anna_comm_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 3d89363..0c849dc 100644 (file)
@@ -1,10 +1,10 @@
-http_static
-comm_static
-timex_static
-app_static
-xml_static
-io_static
-core_static
+anna_http_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 7e25240..1e55745 100644 (file)
@@ -1,9 +1,9 @@
-http_static
-comm_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_http_static
+anna_comm_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 3d89363..0c849dc 100644 (file)
@@ -1,10 +1,10 @@
-http_static
-comm_static
-timex_static
-app_static
-xml_static
-io_static
-core_static
+anna_http_static
+anna_comm_static
+anna_timex_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 7e25240..1e55745 100644 (file)
@@ -1,9 +1,9 @@
-http_static
-comm_static
-app_static
-test_static
-xml_static
-io_static
-core_static
+anna_http_static
+anna_comm_static
+anna_app_static
+anna_test_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 0cab6e6..021d2f8 100644 (file)
@@ -1,8 +1,8 @@
-http_static
-comm_static
-app_static
-xml_static
-io_static
-core_static
+anna_http_static
+anna_comm_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 75ef593..ef31fce 100644 (file)
@@ -1,6 +1,6 @@
-app_static
-io_static
-xml_static
-core_static
+anna_app_static
+anna_io_static
+anna_xml_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index bcec79b..865a897 100644 (file)
@@ -1,10 +1,10 @@
-ldap_static
-timex_static
-comm_static
-app_static
-xml_static
-io_static
-core_static
+anna_ldap_static
+anna_timex_static
+anna_comm_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 33cfe20..b11366a 100644 (file)
@@ -1,3 +1,3 @@
-time_static
-xml_static
-core_static
+anna_time_static
+anna_xml_static
+anna_core_static
index bc25732..df073f1 100644 (file)
@@ -1,10 +1,10 @@
-http_static
-timex_static
-comm_static
-app_static
-xml_static
-io_static
-core_static
+anna_http_static
+anna_timex_static
+anna_comm_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 pthread
 rt
 xml2
 pthread
 rt
 xml2
index 6cde9d4..5ab21c6 100644 (file)
@@ -1,6 +1,6 @@
-app_static
-xml_static
-io_static
-core_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 407ec3c..3331a0e 100644 (file)
@@ -1,7 +1,7 @@
-app_static
-xml_static
-io_static
-core_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 z
 rt
 xml2
 z
 rt
 xml2
index 6cde9d4..5ab21c6 100644 (file)
@@ -1,6 +1,6 @@
-app_static
-xml_static
-io_static
-core_static
+anna_app_static
+anna_xml_static
+anna_io_static
+anna_core_static
 rt
 xml2
 rt
 xml2
index 034855a..b6468e8 100644 (file)
@@ -1 +1 @@
-config_static
+anna_config_static
index 570d1d0..531996c 100644 (file)
@@ -1 +1 @@
-core_static
+anna_core_static
index 33cfe20..b11366a 100644 (file)
@@ -1,3 +1,3 @@
-time_static
-xml_static
-core_static
+anna_time_static
+anna_xml_static
+anna_core_static