Changeset 377
- Timestamp:
- Nov 5, 2011, 11:57:44 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r373 r377 12 12 dnl start 13 13 dnl 14 AM_INIT_AUTOMAKE(samhain, 3.0.0 )14 AM_INIT_AUTOMAKE(samhain, 3.0.0a) 15 15 AC_DEFINE([SAMHAIN], 1, [Application is samhain]) 16 16 AC_CANONICAL_HOST -
trunk/docs/Changelog
r375 r377 1 3.0.0: 1 3.0.0a: 2 * Fix compile-time issues on RHEL5 (reported by Thomas) 3 4 3.0.0 (01-10-2011): 2 5 * Add support for the inotify API 3 6 * If --disable-shellexpand is used, also disable setting -
trunk/src/sh_files.c
r373 r377 19 19 20 20 #include "config_xor.h" 21 22 #if defined(HAVE_PTHREAD_MUTEX_RECURSIVE) 23 #define _XOPEN_SOURCE 500 24 #endif 21 25 22 26 #include <stdio.h> … … 1455 1459 } 1456 1460 out: 1461 ; /* 'label at end of compound statement' */ 1457 1462 SH_MUTEX_RECURSIVE_UNLOCK(mutex_zdirs); 1458 1463 … … 1881 1886 int rdepth = 0; 1882 1887 int class = 0; 1883 intrdepth_next;1888 volatile int rdepth_next; 1884 1889 int class_next; 1885 1890 volatile int file_class_next; … … 2727 2732 #endif 2728 2733 out: 2734 ; /* 'label at end of compound statement' */ 2729 2735 SH_MUTEX_RECURSIVE_UNLOCK(mutex_zdirs); 2730 2736 return retval; … … 2774 2780 #endif 2775 2781 out: 2782 ; /* 'label at end of compound statement' */ 2776 2783 SH_MUTEX_UNLOCK(mutex_zfiles); 2777 2784 return retval; -
trunk/src/sh_inotify.c
r373 r377 666 666 } 667 667 retpoint: 668 ; /* 'label at end of compound statement' */ 668 669 SH_MUTEX_UNLOCK(mutex_watches); 669 670 return retval;
Note:
See TracChangeset
for help on using the changeset viewer.