Ignore:
Timestamp:
Aug 7, 2008, 11:49:04 AM (17 years ago)
Author:
Paul Smedley
Message:

Update trunk to 3.2.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/samba/source/configure.in

    r138 r141  
    27882788#include <stdio.h>
    27892789#include <limits.h>
     2790#include <signal.h>
     2791
     2792void exit_on_core(int ignored) {
     2793        exit(1);
     2794}
     2795
    27902796main() {
    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);
    27932801}
    27942802],
Note: See TracChangeset for help on using the changeset viewer.