cmake HAVE_ATTRIB_PACKED examples

Cisco-Talos/clamav cmake/CheckStructPacking.cmake :10

check_c_source_compiles(
    "
    #ifdef __GNUC__
    struct { int i __attribute__((packed)); } s; int main(){return 0;}
    #else
    #error Only checking for packed attribute on gcc-like compilers
    #endif
    "
    HAVE_ATTRIB_PACKED )