hakonhagland

razor-agents-perl-patch-makefile

Nov 23rd, 2021
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.41 KB | None | 0 0
  1. # patch_makefile.sh
  2.  
  3. #! /bin/bash
  4. sdk_dir=$(xcrun --show-sdk-path)
  5. arch_dir=$(perl -MConfig -E 'print $Config{archlibexp}')
  6. core_dir="$arch_dir"/CORE
  7. sdk_full_path="$sdk_dir""$core_dir"
  8. perl -psi -E 's/$core_dir/$sdk_dir/g' -- -core_dir=$core_dir -sdk_dir=$sdk_full_path -- Makefile
  9.  
  10.  
  11. # Test
  12. $ perl Makefile.PL
  13. perl Makefile.PL
  14. Warning: NAME must be a package name
  15. Writing MYMETA.yml and MYMETA.json
  16. Generating a Unix-style Makefile
  17. Writing Makefile for razor-agents
  18. Writing MYMETA.yml and MYMETA.json
  19. $ ./patch_makefile.sh
  20. $ make
  21. cp lib/Razor2/Preproc/enBase64.pm blib/lib/Razor2/Preproc/enBase64.pm
  22. cp lib/Razor2/Engine/VR8.pm blib/lib/Razor2/Engine/VR8.pm
  23. cp lib/Razor2/Signature/Ephemeral.pm blib/lib/Razor2/Signature/Ephemeral.pm
  24. cp lib/Razor2/Client/Agent.pm blib/lib/Razor2/Client/Agent.pm
  25. cp lib/Razor2/Client/Core.pm blib/lib/Razor2/Client/Core.pm
  26. cp lib/Razor2/Preproc/deHTML_comment.pm blib/lib/Razor2/Preproc/deHTML_comment.pm
  27. cp lib/Razor2/Client/Engine.pm blib/lib/Razor2/Client/Engine.pm
  28. cp lib/Razor2/Client/Config.pm blib/lib/Razor2/Client/Config.pm
  29. cp lib/Razor2/Preproc/deHTML.pm blib/lib/Razor2/Preproc/deHTML.pm
  30. cp lib/Razor2/Signature/Whiplash.pm blib/lib/Razor2/Signature/Whiplash.pm
  31. cp lib/Razor2/Preproc/Manager.pm blib/lib/Razor2/Preproc/Manager.pm
  32. cp lib/Razor2/Errorhandler.pm blib/lib/Razor2/Errorhandler.pm
  33. cp lib/Razor2/Preproc/deNewline.pm blib/lib/Razor2/Preproc/deNewline.pm
  34. cp lib/Razor2/Syslog.pm blib/lib/Razor2/Syslog.pm
  35. AutoSplitting blib/lib/Razor2/Syslog.pm (blib/lib/auto/Razor2/Syslog)
  36. cp lib/Razor2/Logger.pm blib/lib/Razor2/Logger.pm
  37. cp lib/Razor2/Client/Version.pm blib/lib/Razor2/Client/Version.pm
  38. cp lib/Razor2/Preproc/deBase64.pm blib/lib/Razor2/Preproc/deBase64.pm
  39. cp lib/Razor2/Preproc/deQP.pm blib/lib/Razor2/Preproc/deQP.pm
  40. cp lib/Razor2/String.pm blib/lib/Razor2/String.pm
  41. cp deHTMLxs.pm ../blib/lib/Razor2/Preproc/deHTMLxs.pm
  42. AutoSplitting ../blib/lib/Razor2/Preproc/deHTMLxs.pm (../blib/lib/auto/Razor2/Preproc/deHTMLxs)
  43. Running Mkbootstrap for deHTMLxs ()
  44. chmod 644 "deHTMLxs.bs"
  45. "/usr/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- deHTMLxs.bs ../blib/arch/auto/Razor2/Preproc/deHTMLxs/deHTMLxs.bs 644
  46. cc -c -g -pipe -fno-strict-aliasing -fstack-protector-strong -DPERL_USE_SAFE_PUTENV -Os -DVERSION=\"2.18\" -DXS_VERSION=\"2.18\" -iwithsysroot "/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE" _deHTMLxs.c
  47. "/usr/bin/perl" "/System/Library/Perl/5.30/ExtUtils/xsubpp" -typemap '/System/Library/Perl/5.30/ExtUtils/typemap' -typemap '/Users/hakonhaegland/perl/downloaded/razor-agents-2.84/Razor2-Preproc-deHTMLxs/typemap' deHTMLxs.xs > deHTMLxs.xsc
  48. mv deHTMLxs.xsc deHTMLxs.c
  49. cc -c -g -pipe -fno-strict-aliasing -fstack-protector-strong -DPERL_USE_SAFE_PUTENV -Os -DVERSION=\"2.18\" -DXS_VERSION=\"2.18\" -iwithsysroot "/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE" deHTMLxs.c
  50. deHTMLxs.c:202:5: warning: '(' and '{' tokens introducing statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  51. XSRETURN(1);
  52. ^~~~~~~~~~~
  53. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:311:5: note: expanded from macro 'XSRETURN'
  54. STMT_START { \
  55. ^~~~~~~~~~
  56. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:544:29: note: expanded from macro 'STMT_START'
  57. # define STMT_START (void)( /* gcc supports "({ STATEMENTS; })" */
  58. ^
  59. deHTMLxs.c:202:5: note: '{' token is here
  60. XSRETURN(1);
  61. ^~~~~~~~~~~
  62. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:311:16: note: expanded from macro 'XSRETURN'
  63. STMT_START { \
  64. ^
  65. deHTMLxs.c:202:5: warning: '}' and ')' tokens terminating statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  66. XSRETURN(1);
  67. ^~~~~~~~~~~
  68. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:316:5: note: expanded from macro 'XSRETURN'
  69. } STMT_END
  70. ^
  71. deHTMLxs.c:202:5: note: ')' token is here
  72. XSRETURN(1);
  73. ^~~~~~~~~~~
  74. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:316:7: note: expanded from macro 'XSRETURN'
  75. } STMT_END
  76. ^~~~~~~~
  77. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:545:21: note: expanded from macro 'STMT_END'
  78. # define STMT_END )
  79. ^
  80. deHTMLxs.c:229:13: warning: '(' and '{' tokens introducing statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  81. XSprePUSH; PUSHi((IV)RETVAL);
  82. ^~~~~~~~~~~~~~~~~
  83. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:459:18: note: expanded from macro 'PUSHi'
  84. #define PUSHi(i) STMT_START { TARGi(i,1); PUSHs(TARG); } STMT_END
  85. ^~~~~~~~~~
  86. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:544:29: note: expanded from macro 'STMT_START'
  87. # define STMT_START (void)( /* gcc supports "({ STATEMENTS; })" */
  88. ^
  89. deHTMLxs.c:229:13: note: '{' token is here
  90. XSprePUSH; PUSHi((IV)RETVAL);
  91. ^~~~~~~~~~~~~~~~~
  92. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:459:29: note: expanded from macro 'PUSHi'
  93. #define PUSHi(i) STMT_START { TARGi(i,1); PUSHs(TARG); } STMT_END
  94. ^
  95. deHTMLxs.c:229:13: warning: '(' and '{' tokens introducing statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  96. XSprePUSH; PUSHi((IV)RETVAL);
  97. ^~~~~~~~~~~~~~~~~
  98. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:459:31: note: expanded from macro 'PUSHi'
  99. #define PUSHi(i) STMT_START { TARGi(i,1); PUSHs(TARG); } STMT_END
  100. ^~~~~~~~~~
  101. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:392:5: note: expanded from macro 'TARGi'
  102. STMT_START { \
  103. ^~~~~~~~~~
  104. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:544:29: note: expanded from macro 'STMT_START'
  105. # define STMT_START (void)( /* gcc supports "({ STATEMENTS; })" */
  106. ^
  107. deHTMLxs.c:229:13: note: '{' token is here
  108. XSprePUSH; PUSHi((IV)RETVAL);
  109. ^~~~~~~~~~~~~~~~~
  110. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:459:31: note: expanded from macro 'PUSHi'
  111. #define PUSHi(i) STMT_START { TARGi(i,1); PUSHs(TARG); } STMT_END
  112. ^~~~~~~~~~
  113. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:392:16: note: expanded from macro 'TARGi'
  114. STMT_START { \
  115. ^
  116. deHTMLxs.c:229:13: warning: '}' and ')' tokens terminating statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  117. XSprePUSH; PUSHi((IV)RETVAL);
  118. ^~~~~~~~~~~~~~~~~
  119. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:459:31: note: expanded from macro 'PUSHi'
  120. #define PUSHi(i) STMT_START { TARGi(i,1); PUSHs(TARG); } STMT_END
  121. ^~~~~~~~~~
  122. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:409:5: note: expanded from macro 'TARGi'
  123. } STMT_END
  124. ^
  125. deHTMLxs.c:229:13: note: ')' token is here
  126. XSprePUSH; PUSHi((IV)RETVAL);
  127. ^~~~~~~~~~~~~~~~~
  128. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:459:31: note: expanded from macro 'PUSHi'
  129. #define PUSHi(i) STMT_START { TARGi(i,1); PUSHs(TARG); } STMT_END
  130. ^~~~~~~~~~
  131. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:409:7: note: expanded from macro 'TARGi'
  132. } STMT_END
  133. ^~~~~~~~
  134. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:545:21: note: expanded from macro 'STMT_END'
  135. # define STMT_END )
  136. ^
  137. deHTMLxs.c:229:13: warning: '}' and ')' tokens terminating statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  138. XSprePUSH; PUSHi((IV)RETVAL);
  139. ^~~~~~~~~~~~~~~~~
  140. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:459:56: note: expanded from macro 'PUSHi'
  141. #define PUSHi(i) STMT_START { TARGi(i,1); PUSHs(TARG); } STMT_END
  142. ^
  143. deHTMLxs.c:229:13: note: ')' token is here
  144. XSprePUSH; PUSHi((IV)RETVAL);
  145. ^~~~~~~~~~~~~~~~~
  146. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:459:58: note: expanded from macro 'PUSHi'
  147. #define PUSHi(i) STMT_START { TARGi(i,1); PUSHs(TARG); } STMT_END
  148. ^~~~~~~~
  149. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:545:21: note: expanded from macro 'STMT_END'
  150. # define STMT_END )
  151. ^
  152. deHTMLxs.c:231:5: warning: '(' and '{' tokens introducing statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  153. XSRETURN(1);
  154. ^~~~~~~~~~~
  155. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:311:5: note: expanded from macro 'XSRETURN'
  156. STMT_START { \
  157. ^~~~~~~~~~
  158. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:544:29: note: expanded from macro 'STMT_START'
  159. # define STMT_START (void)( /* gcc supports "({ STATEMENTS; })" */
  160. ^
  161. deHTMLxs.c:231:5: note: '{' token is here
  162. XSRETURN(1);
  163. ^~~~~~~~~~~
  164. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:311:16: note: expanded from macro 'XSRETURN'
  165. STMT_START { \
  166. ^
  167. deHTMLxs.c:231:5: warning: '}' and ')' tokens terminating statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  168. XSRETURN(1);
  169. ^~~~~~~~~~~
  170. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:316:5: note: expanded from macro 'XSRETURN'
  171. } STMT_END
  172. ^
  173. deHTMLxs.c:231:5: note: ')' token is here
  174. XSRETURN(1);
  175. ^~~~~~~~~~~
  176. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:316:7: note: expanded from macro 'XSRETURN'
  177. } STMT_END
  178. ^~~~~~~~
  179. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:545:21: note: expanded from macro 'STMT_END'
  180. # define STMT_END )
  181. ^
  182. deHTMLxs.c:260:37: warning: '(' and '{' tokens introducing statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  183. sv_setpv(TARG, RETVAL); XSprePUSH; PUSHTARG;
  184. ^~~~~~~~
  185. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:456:18: note: expanded from macro 'PUSHTARG'
  186. #define PUSHTARG STMT_START { SvSETMAGIC(TARG); PUSHs(TARG); } STMT_END
  187. ^~~~~~~~~~
  188. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:544:29: note: expanded from macro 'STMT_START'
  189. # define STMT_START (void)( /* gcc supports "({ STATEMENTS; })" */
  190. ^
  191. deHTMLxs.c:260:37: note: '{' token is here
  192. sv_setpv(TARG, RETVAL); XSprePUSH; PUSHTARG;
  193. ^~~~~~~~
  194. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:456:29: note: expanded from macro 'PUSHTARG'
  195. #define PUSHTARG STMT_START { SvSETMAGIC(TARG); PUSHs(TARG); } STMT_END
  196. ^
  197. deHTMLxs.c:260:37: warning: '(' and '{' tokens introducing statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  198. sv_setpv(TARG, RETVAL); XSprePUSH; PUSHTARG;
  199. ^~~~~~~~
  200. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:456:31: note: expanded from macro 'PUSHTARG'
  201. #define PUSHTARG STMT_START { SvSETMAGIC(TARG); PUSHs(TARG); } STMT_END
  202. ^~~~~~~~~~~~~~~~
  203. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/sv.h:2059:23: note: expanded from macro 'SvSETMAGIC'
  204. #define SvSETMAGIC(x) STMT_START { if (UNLIKELY(SvSMAGICAL(x))) mg_set(x); } STMT_END
  205. ^~~~~~~~~~
  206. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:544:29: note: expanded from macro 'STMT_START'
  207. # define STMT_START (void)( /* gcc supports "({ STATEMENTS; })" */
  208. ^
  209. deHTMLxs.c:260:37: note: '{' token is here
  210. sv_setpv(TARG, RETVAL); XSprePUSH; PUSHTARG;
  211. ^~~~~~~~
  212. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:456:31: note: expanded from macro 'PUSHTARG'
  213. #define PUSHTARG STMT_START { SvSETMAGIC(TARG); PUSHs(TARG); } STMT_END
  214. ^~~~~~~~~~~~~~~~
  215. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/sv.h:2059:34: note: expanded from macro 'SvSETMAGIC'
  216. #define SvSETMAGIC(x) STMT_START { if (UNLIKELY(SvSMAGICAL(x))) mg_set(x); } STMT_END
  217. ^
  218. deHTMLxs.c:260:37: warning: '}' and ')' tokens terminating statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  219. sv_setpv(TARG, RETVAL); XSprePUSH; PUSHTARG;
  220. ^~~~~~~~
  221. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:456:31: note: expanded from macro 'PUSHTARG'
  222. #define PUSHTARG STMT_START { SvSETMAGIC(TARG); PUSHs(TARG); } STMT_END
  223. ^~~~~~~~~~~~~~~~
  224. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/sv.h:2059:76: note: expanded from macro 'SvSETMAGIC'
  225. #define SvSETMAGIC(x) STMT_START { if (UNLIKELY(SvSMAGICAL(x))) mg_set(x); } STMT_END
  226. ^
  227. deHTMLxs.c:260:37: note: ')' token is here
  228. sv_setpv(TARG, RETVAL); XSprePUSH; PUSHTARG;
  229. ^~~~~~~~
  230. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:456:31: note: expanded from macro 'PUSHTARG'
  231. #define PUSHTARG STMT_START { SvSETMAGIC(TARG); PUSHs(TARG); } STMT_END
  232. ^~~~~~~~~~~~~~~~
  233. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/sv.h:2059:78: note: expanded from macro 'SvSETMAGIC'
  234. #define SvSETMAGIC(x) STMT_START { if (UNLIKELY(SvSMAGICAL(x))) mg_set(x); } STMT_END
  235. ^~~~~~~~
  236. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:545:21: note: expanded from macro 'STMT_END'
  237. # define STMT_END )
  238. ^
  239. deHTMLxs.c:260:37: warning: '}' and ')' tokens terminating statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  240. sv_setpv(TARG, RETVAL); XSprePUSH; PUSHTARG;
  241. ^~~~~~~~
  242. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:456:62: note: expanded from macro 'PUSHTARG'
  243. #define PUSHTARG STMT_START { SvSETMAGIC(TARG); PUSHs(TARG); } STMT_END
  244. ^
  245. deHTMLxs.c:260:37: note: ')' token is here
  246. sv_setpv(TARG, RETVAL); XSprePUSH; PUSHTARG;
  247. ^~~~~~~~
  248. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/pp.h:456:64: note: expanded from macro 'PUSHTARG'
  249. #define PUSHTARG STMT_START { SvSETMAGIC(TARG); PUSHs(TARG); } STMT_END
  250. ^~~~~~~~
  251. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:545:21: note: expanded from macro 'STMT_END'
  252. # define STMT_END )
  253. ^
  254. deHTMLxs.c:262:5: warning: '(' and '{' tokens introducing statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  255. XSRETURN(1);
  256. ^~~~~~~~~~~
  257. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:311:5: note: expanded from macro 'XSRETURN'
  258. STMT_START { \
  259. ^~~~~~~~~~
  260. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:544:29: note: expanded from macro 'STMT_START'
  261. # define STMT_START (void)( /* gcc supports "({ STATEMENTS; })" */
  262. ^
  263. deHTMLxs.c:262:5: note: '{' token is here
  264. XSRETURN(1);
  265. ^~~~~~~~~~~
  266. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:311:16: note: expanded from macro 'XSRETURN'
  267. STMT_START { \
  268. ^
  269. deHTMLxs.c:262:5: warning: '}' and ')' tokens terminating statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  270. XSRETURN(1);
  271. ^~~~~~~~~~~
  272. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:316:5: note: expanded from macro 'XSRETURN'
  273. } STMT_END
  274. ^
  275. deHTMLxs.c:262:5: note: ')' token is here
  276. XSRETURN(1);
  277. ^~~~~~~~~~~
  278. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:316:7: note: expanded from macro 'XSRETURN'
  279. } STMT_END
  280. ^~~~~~~~
  281. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:545:21: note: expanded from macro 'STMT_END'
  282. # define STMT_END )
  283. ^
  284. deHTMLxs.c:316:5: warning: '(' and '{' tokens introducing statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  285. XSRETURN(1);
  286. ^~~~~~~~~~~
  287. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:311:5: note: expanded from macro 'XSRETURN'
  288. STMT_START { \
  289. ^~~~~~~~~~
  290. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:544:29: note: expanded from macro 'STMT_START'
  291. # define STMT_START (void)( /* gcc supports "({ STATEMENTS; })" */
  292. ^
  293. deHTMLxs.c:316:5: note: '{' token is here
  294. XSRETURN(1);
  295. ^~~~~~~~~~~
  296. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:311:16: note: expanded from macro 'XSRETURN'
  297. STMT_START { \
  298. ^
  299. deHTMLxs.c:316:5: warning: '}' and ')' tokens terminating statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  300. XSRETURN(1);
  301. ^~~~~~~~~~~
  302. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:316:5: note: expanded from macro 'XSRETURN'
  303. } STMT_END
  304. ^
  305. deHTMLxs.c:316:5: note: ')' token is here
  306. XSRETURN(1);
  307. ^~~~~~~~~~~
  308. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:316:7: note: expanded from macro 'XSRETURN'
  309. } STMT_END
  310. ^~~~~~~~
  311. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:545:21: note: expanded from macro 'STMT_END'
  312. # define STMT_END )
  313. ^
  314. deHTMLxs.c:392:5: warning: '(' and '{' tokens introducing statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  315. XSRETURN(1);
  316. ^~~~~~~~~~~
  317. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:311:5: note: expanded from macro 'XSRETURN'
  318. STMT_START { \
  319. ^~~~~~~~~~
  320. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:544:29: note: expanded from macro 'STMT_START'
  321. # define STMT_START (void)( /* gcc supports "({ STATEMENTS; })" */
  322. ^
  323. deHTMLxs.c:392:5: note: '{' token is here
  324. XSRETURN(1);
  325. ^~~~~~~~~~~
  326. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:311:16: note: expanded from macro 'XSRETURN'
  327. STMT_START { \
  328. ^
  329. deHTMLxs.c:392:5: warning: '}' and ')' tokens terminating statement expression appear in different macro expansion contexts [-Wcompound-token-split-by-macro]
  330. XSRETURN(1);
  331. ^~~~~~~~~~~
  332. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:316:5: note: expanded from macro 'XSRETURN'
  333. } STMT_END
  334. ^
  335. deHTMLxs.c:392:5: note: ')' token is here
  336. XSRETURN(1);
  337. ^~~~~~~~~~~
  338. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/XSUB.h:316:7: note: expanded from macro 'XSRETURN'
  339. } STMT_END
  340. ^~~~~~~~
  341. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Perl/5.30/darwin-thread-multi-2level/CORE/perl.h:545:21: note: expanded from macro 'STMT_END'
  342. # define STMT_END )
  343. ^
  344. 18 warnings generated.
  345. rm -f ../blib/arch/auto/Razor2/Preproc/deHTMLxs/deHTMLxs.bundle
  346. cc -bundle -undefined dynamic_lookup -fstack-protector-strong _deHTMLxs.o deHTMLxs.o -o ../blib/arch/auto/Razor2/Preproc/deHTMLxs/deHTMLxs.bundle \
  347. \
  348.  
  349. chmod 755 ../blib/arch/auto/Razor2/Preproc/deHTMLxs/deHTMLxs.bundle
  350. Manifying 1 pod document
  351. cp bin/razor-admin blib/script/razor-admin
  352. "/usr/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/razor-admin
  353. cp bin/razor-check blib/script/razor-check
  354. "/usr/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/razor-check
  355. cp bin/razor-client blib/script/razor-client
  356. "/usr/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/razor-client
  357. cp bin/razor-report blib/script/razor-report
  358. "/usr/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/razor-report
  359. cp bin/razor-revoke blib/script/razor-revoke
  360. "/usr/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/razor-revoke
  361. "/usr/bin/perl" "-MExtUtils::Command::MM" -e pod2man "--" \
  362. docs/razor-agent.conf.pod \
  363. blib/man5/razor-agent.conf.5 \
  364. docs/razor-agents.pod \
  365. blib/man5/razor-agents.5 \
  366. docs/razor-whitelist.pod \
  367. blib/man5/razor-whitelist.5
  368. Manifying 3 pod documents
  369. Manifying 4 pod documents
  370. Manifying 2 pod documents
Add Comment
Please, Sign In to add comment