Re: hash.c compilation error

2006-02-18 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Davide Angelocola on 2/17/2006 11:24 AM: Hi, hash.c with USE_OBSTACK fails to compile with gcc 3.3.4: hash.c:38:16: #if with no expression Are you correctly defining USE_OBSTACK with a non-zero value, or did you just define it as

Re: hash.c compilation error

2006-02-18 Thread Paul Eggert
Davide Angelocola [EMAIL PROTECTED] writes: hash.c:38:16: #if with no expression You're supposed to define USE_OBSTACK to 1, not to no expression. ___ bug-gnulib mailing list bug-gnulib@gnu.org http://lists.gnu.org/mailman/listinfo/bug-gnulib

Re: hash.c compilation error

2006-02-18 Thread Jim Meyering
Davide Angelocola [EMAIL PROTECTED] wrote: hash.c with USE_OBSTACK fails to compile with gcc 3.3.4: hash.c:38:16: #if with no expression Define it to `1' if you want to enable that: i.e., -DUSE_OBSTACK=1 on the command line or #define USE_OBSTACK 1