- Remove gcc patch (upstream) - Remove useless BR for libjpeg - Make config.h a source instead of defining it in the spec file - Truncate changelog
11 lines
181 B
C
11 lines
181 B
C
#include <bits/wordsize.h>
|
|
|
|
#if __WORDSIZE == 32
|
|
#include "grass/config-32.h"
|
|
#else
|
|
#if __WORDSIZE == 64
|
|
#include "grass/config-64.h"
|
|
#else
|
|
#error "Unknown word size"
|
|
#endif
|
|
#endif
|