Ignore:
Timestamp:
Aug 5, 2011, 7:52:23 AM (14 years ago)
Author:
Herwig Bauernfeind
Message:

Samba 3.5: Update vendor to version 3.5.11

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/configure.in

    r597 r618  
    13321332fi
    13331333
     1334AC_CACHE_CHECK([whether we can compile with __attribute__((destructor))],
     1335               samba_cv_function_attribute_destructor,
     1336               [
     1337                 AC_COMPILE_IFELSE(
     1338                        [
     1339                                __attribute__((destructor))
     1340                                static void cleanup(void) { }
     1341                        ],
     1342                        samba_cv_function_attribute_destructor=yes)
     1343                ])
     1344
     1345if test x"$samba_cv_function_attribute_destructor" = xyes ; then
     1346   AC_DEFINE(HAVE_FUNCTION_ATTRIBUTE_DESTRUCTOR, 1,
     1347             [whether we can compile with __attribute__((destructor))])
     1348fi
     1349
    13341350#####################################
    13351351# needed for SRV lookups
Note: See TracChangeset for help on using the changeset viewer.