Changeset 36
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.frag
r35 r36 19 19 20 20 $(XCACHE_PROC_H): $(XCACHE_PROC_OUT) 21 $(GREP) -F 'export: ' $(XCACHE_PROC_OUT) | $(SED) -r 's/.*export:(.*):export.*/\1/g' | $(XCACHE_INDENT) > $(XCACHE_PROC_H).tmp21 $(GREP) -F 'export: ' $(XCACHE_PROC_OUT) | $(SED) 's/.*export:\(.*\):export.*/\1/g' | $(XCACHE_INDENT) > $(XCACHE_PROC_H).tmp 22 22 mv -f $(XCACHE_PROC_H).tmp $(XCACHE_PROC_H) 23 23 -
trunk/align.h
r1 r36 1 1 #ifndef __ALIGN_H 2 2 #define __ALIGN_H 3 #ifndef ALIGN 3 4 typedef union align_union { 4 5 double d; … … 15 16 16 17 #define ALIGN(n) ((((size_t)(n)-1) & ~(XCACHE_PLATFORM_ALIGNMENT-1)) + XCACHE_PLATFORM_ALIGNMENT) 17 18 #endif 18 19 #endif /* __ALIGN_H */ -
trunk/config.m4
r30 r36 62 62 case $INDENT in 63 63 */indent[)] 64 XCACHE_INDENT="$INDENT -kr --use-tabs --tab-size 4 -sob -nce" 64 opts="-kr --use-tabs --tab-size 4 -sob -nce" 65 if echo | $INDENT $opts > /dev/null 2>&1 ; then 66 XCACHE_INDENT="$INDENT $opts" 67 else 68 opts="-sob -nce" 69 if echo | $INDENT $opts > /dev/null 2>&1 ; then 70 XCACHE_INDENT="$INDENT $opts" 71 else 72 if echo | $INDENT > /dev/null 2>&1 ; then 73 XCACHE_INDENT="$INDENT" 74 fi 75 fi 76 fi 65 77 ;; 66 78 *[)] -
trunk/lock.c
r11 r36 1 1 #include <stdio.h> 2 2 #include <string.h> 3 #include < malloc.h>3 #include <stdlib.h> 4 4 5 5 #include <php.h> -
trunk/xcache.c
r34 r36 7 7 #include <string.h> 8 8 9 #include <malloc.h>10 9 #include <signal.h> 11 10
Note: See TracChangeset
for help on using the changeset viewer.

