Steve Kargl
2011-11-01 17:40:08 UTC
FreeBSD has recently branched its trunk to prepare
for the 9.0 release. This means that trunk now uses
10.0 as its version. The following patch adds 10.0
to the list of supported versions.
Index: configure.ac
===================================================================
RCS file: /cvsroot/pcc/configure.ac,v
retrieving revision 1.106
diff -c -p -r1.106 configure.ac
*** configure.ac 6 Jul 2011 17:31:15 -0000 1.106
--- configure.ac 1 Nov 2011 17:37:02 -0000
*************** case "$target_os" in
*** 70,75 ****
--- 70,76 ----
abi=elf
stabs=yes
case "$target_os" in
+ *10.*) targosver=10 ;;
*9.*) targosver=9 ;;
*8.*) targosver=8 ;;
*7.*) targosver=7 ;;
for the 9.0 release. This means that trunk now uses
10.0 as its version. The following patch adds 10.0
to the list of supported versions.
Index: configure.ac
===================================================================
RCS file: /cvsroot/pcc/configure.ac,v
retrieving revision 1.106
diff -c -p -r1.106 configure.ac
*** configure.ac 6 Jul 2011 17:31:15 -0000 1.106
--- configure.ac 1 Nov 2011 17:37:02 -0000
*************** case "$target_os" in
*** 70,75 ****
--- 70,76 ----
abi=elf
stabs=yes
case "$target_os" in
+ *10.*) targosver=10 ;;
*9.*) targosver=9 ;;
*8.*) targosver=8 ;;
*7.*) targosver=7 ;;
--
Steve
Steve