Changeset 2637 for trunk/packages
- Timestamp:
- Oct 17, 2011, 8:04:39 AM (13 years ago)
- Location:
- trunk/packages/vizservers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/vizservers/nanoscale/renderservers.tcl.in
r2406 r2637 39 39 PYMOL_PATH ${libdir}/pymol 40 40 } 41 42 # 43 # Pymol server (threaded version of proxy) -- 44 # Molecular layouts from PDB description. Must set PYMOL_PATH. 45 # 46 register_server pymol-threaded 2019 { 47 ${bindir}/pymolproxy2 ${bindir}/pymol -p -q -i -x -X 0 -Y 0 48 } { 49 LD_LIBRARY_PATH ${libdir} 50 PYMOL_PATH ${libdir}/pymol 51 } -
trunk/packages/vizservers/pymolproxy/Makefile.in
r2633 r2637 29 29 .PHONY: all install clean distclean 30 30 31 FILES = pymolproxy pymolproxy2 pymol 31 32 PROXY_OBJS = pymolproxy.o 32 33 PROXY2_OBJS = pymolproxy2.o … … 51 52 install-pymolproxy: pymolproxy pymolproxy2 52 53 $(MKDIR_P) -m 0755 $(bindir) 53 $(INSTALL) -m 0555 pymolproxy pymolproxy2 pymol $(bindir) 54 for i in $(FILES) ; do \ 55 $(INSTALL) -m 0555 $$i $(bindir) ; \ 56 done 54 57 55 58 install-scripts: -
trunk/packages/vizservers/pymolproxy/pymolproxy2.c
r2634 r2637 89 89 #define TRUE 1 90 90 91 static int debug = TRUE;91 static int debug = FALSE; 92 92 static char stderrFile[200]; 93 93 static FILE *fdebug; … … 246 246 s++; 247 247 } 248 length = snprintf(message, MSG_LEN, "pymolproxy (%d) %s: %s:%d ",248 length = snprintf(message, MSG_LEN, "pymolproxy2 (%d) %s: %s:%d ", 249 249 getpid(), syslogLevels[priority], s, lineNum); 250 250 length += vsnprintf(message + length, MSG_LEN - length, fmt, lst); … … 2283 2283 fflush(stdout); 2284 2284 2285 INFO("Starting pymolproxy (threaded version)"); 2286 2285 2287 InitProxy(&proxy, stderrFile, argv + 1); 2286 2288 if (pthread_create(&thread1, NULL, &ClientToServer, &proxy) < 0) {
Note: See TracChangeset
for help on using the changeset viewer.