View | Details | Raw Unified | Return to bug 255167
Collapse All | Expand All

(-)b/devel/universal-ctags/files/patch-Tmain_map-removing.d_run.sh (+32 lines)
Added Link Here
1
--- Tmain/map-removing.d/run.sh.orig	2021-04-18 04:45:23 UTC
2
+++ Tmain/map-removing.d/run.sh
3
@@ -6,25 +6,25 @@ CTAGS=$1
4
 echo default map including '*.m'
5
 echo =======================================
6
 ${CTAGS} --quiet --options=NONE \
7
-	 --list-maps | grep '\*\.m\>.*$'
8
+	 --list-maps | grep '\*\.m\>'
9
 echo
10
 
11
 echo '[--map-<LANG>]' removing from '*.m' from 'ObjectiveC'
12
 echo =======================================
13
 ${CTAGS} --quiet --options=NONE \
14
-	 --map-ObjectiveC=-.m --list-maps | grep '\*\.m\>.*$'
15
+	 --map-ObjectiveC=-.m --list-maps | grep '\*\.m\>'
16
 echo
17
 
18
 echo '[--map-<LANG>]' adding '*.m' to 'Ada'
19
 echo =======================================
20
 ${CTAGS} --quiet --options=NONE \
21
-	 --map-Ada=+.m --list-maps | grep '\*\.m\>.*$'
22
+	 --map-Ada=+.m --list-maps | grep '\*\.m\>'
23
 echo
24
 
25
 echo '[--map-<LANG>]' removing from '*.m' from 'ObjectiveC', and adding '*.m' to 'Ada'
26
 echo =======================================
27
 ${CTAGS} --quiet --options=NONE \
28
-	 --map-ObjectiveC=-.m --map-Ada=+.m --list-maps | grep '\*\.m\>.*$'
29
+	 --map-ObjectiveC=-.m --map-Ada=+.m --list-maps | grep '\*\.m\>'
30
 echo
31
 
32
 echo '[--map-<LANG>]' guessing parser with adding '*.m' to 'Ada'
(-)b/devel/universal-ctags/files/patch-misc_packcc_src_packcc.c (-1 / +11 lines)
Added Link Here
0
- 
1
--- misc/packcc/src/packcc.c.orig	2021-04-16 22:31:22 UTC
2
+++ misc/packcc/src/packcc.c
3
@@ -910,7 +910,7 @@ static size_t populate_bits(size_t x) {
4
     x |= x >>  4;
5
     x |= x >>  8;
6
     x |= x >> 16;
7
-#ifndef _M_IX86 /* not Windows for x86 (32-bit) */
8
+#if (defined __SIZEOF_SIZE_T__ && __SIZEOF_SIZE_T__ == 8)
9
     x |= x >> 32;
10
 #endif
11
     return x;

Return to bug 255167