mod_xmltools-install:
echo $@
$(APXS2) -i -a -n mod_xmltools mod_xmltools.so
- @echo "-----------------------------------------------";
- @echo -e "* Important * : Change httpd.conf from this: \n \
+ echo "-----------------------------------------------";
+ echo -e "* Important * : Change httpd.conf from this: \n \
LoadModule mod_xmltools_module modules/mod_xmltools.so \n \
to this: \n \
LoadModule mod_xmltools modules/mod_xmltools.so"
- @echo -e "Supported configuration options:\
+ echo -e "Supported configuration options:\
\nXMLToolsDefaultLocale <locale>\
\nXMLToolsLocaleDir <web-locale-dir>\
\nXMLToolsPreXSL <pre_xsl_file>\
\nXMLToolsPostXSL <post_xsl_file>"
- @echo "-----------------------------------------------";
- @sleep 3;
+ echo "-----------------------------------------------";
+ echo ""
clean:
echo $@
info_handler("Bootstrapping system with domain %s, port %d, and unixpath %s", domain, iport, unixpath );
transport_client* client = client_init( domain, iport, unixpath, 0 );
+
char buf[256];
memset(buf,0,256);
char* host = getenv("HOSTNAME");
session->port = port;
session->server = strdup(server);
- session->unix_path = strdup(unix_path);
+ if(unix_path)
+ session->unix_path = strdup(unix_path);
+ session->unix_path = NULL;
+
session->sock_id = 0;
/* this will be handed back to us in callbacks */