Changeset 141 for trunk/samba/source/configure.in
- Timestamp:
- Aug 7, 2008, 11:49:04 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/samba/source/configure.in
r138 r141 2788 2788 #include <stdio.h> 2789 2789 #include <limits.h> 2790 #include <signal.h> 2791 2792 void exit_on_core(int ignored) { 2793 exit(1); 2794 } 2795 2790 2796 main() { 2791 char *newpath = realpath("/tmp", NULL); 2792 exit ((newpath != NULL) ? 0 : 1); 2797 char *newpath; 2798 signal(SIGSEGV, exit_on_core); 2799 newpath = realpath("/tmp", NULL); 2800 exit((newpath != NULL) ? 0 : 1); 2793 2801 } 2794 2802 ],
Note:
See TracChangeset
for help on using the changeset viewer.