diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-04 20:30:46 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-04 20:30:46 +0100 |
commit | bce20148efd93f3509c1c2e6efdcc273eefb3ee8 (patch) | |
tree | 8ef9079c73868cd1086f01900d76e44146e2f850 /protocols/yahoo/Makefile | |
parent | 3063f8185b354358362665a90967fa15c5407f2b (diff) |
Try another way to silence int-pointer cast warnings in the Yahoo! module.
-Wno-pointer-to-int-cast is not supported by gcc3.
Diffstat (limited to 'protocols/yahoo/Makefile')
-rw-r--r-- | protocols/yahoo/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/yahoo/Makefile b/protocols/yahoo/Makefile index e5374538..20ecce71 100644 --- a/protocols/yahoo/Makefile +++ b/protocols/yahoo/Makefile @@ -14,7 +14,7 @@ endif # [SH] Program variables objects = yahoo.o crypt.o libyahoo2.o yahoo_fn.o yahoo_httplib.o yahoo_util.o -CFLAGS += -Wall -DSTDC_HEADERS -DHAVE_STRING_H -DHAVE_STRCHR -DHAVE_MEMCPY -DHAVE_GLIB -Wno-pointer-to-int-cast +CFLAGS += -Wall -DSTDC_HEADERS -DHAVE_STRING_H -DHAVE_STRCHR -DHAVE_MEMCPY -DHAVE_GLIB LFLAGS += -r # [SH] Phony targets |