]> granicus.if.org Git - onig/commitdiff
escape compile-time warnings for MacOS X
authorK.Kosako <kkosako0@gmail.com>
Sat, 3 Feb 2018 10:15:52 +0000 (19:15 +0900)
committerK.Kosako <kkosako0@gmail.com>
Sat, 3 Feb 2018 10:15:52 +0000 (19:15 +0900)
test/Makefile.am
test/testu.c

index 9643bb0ddac7925db6213b6195c3b1f495433e4b..6559a77f9fd29db81073aabd070bb8e04cfcd73c 100644 (file)
@@ -2,7 +2,7 @@
 lib_onig = ../src/libonig.la
 
 AM_LDFLAGS  = -L$(prefix)/lib
-AM_CFLAGS =
+AM_CFLAGS = -Wall -Wno-invalid-source-encoding
 AM_CPPFLAGS = -I$(top_srcdir)/src -I$(includedir)
 
 TESTS = test_utf8 testc testp testcu
@@ -27,7 +27,8 @@ testc_LDADD = $(lib_onig)
 
 testp_SOURCES = testc.c
 testp_LDADD = $(lib_onig)
-testp_CFLAGS = -DPOSIX_TEST
+testp_CFLAGS = -DPOSIX_TEST -Wall -Wno-invalid-source-encoding
+
 
 testcu_SOURCES = testu.c
 testcu_LDADD = $(lib_onig)
index d037194adb61711306042bf4a7d4fa3e3e70adf2..d2bb9eea96204f861b273d5508b08e727b88ba0a 100644 (file)
@@ -139,7 +139,7 @@ static void xx(char* pattern, char* str, int from, int to, int mem, int not)
 
   if (r) {
     char s[ONIG_MAX_ERROR_MESSAGE_LEN];
-    onig_error_code_to_str(s, r, &einfo);
+    onig_error_code_to_str((UChar* )s, r, &einfo);
     fprintf(err_file, "ERROR: %s\n", s);
     nerror++;
     return ;
@@ -150,7 +150,7 @@ static void xx(char* pattern, char* str, int from, int to, int mem, int not)
                  region, ONIG_OPTION_NONE);
   if (r < ONIG_MISMATCH) {
     char s[ONIG_MAX_ERROR_MESSAGE_LEN];
-    onig_error_code_to_str(s, r);
+    onig_error_code_to_str((UChar* )s, r);
     fprintf(err_file, "ERROR: %s\n", s);
     nerror++;
     return ;