Changeset 3474
- Timestamp:
- Jun 17, 2007, 4:44:55 AM (18 years ago)
- Location:
- trunk/essentials/net-misc/wget
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/net-misc/wget/config.guess
r3440 r3474 1030 1030 exit ;; 1031 1031 i*86:OS/2:*:*) 1032 # If we were able to find `uname', then EMX Unix compatibility 1033 # is probably installed. 1034 echo ${UNAME_MACHINE}-pc-os2-emx 1032 # If we were able to find `uname', then EMX or kNIX Unix compatibility 1033 # or probably installed. Check if '-i' makes any difference. 1034 if uname -i 2> /dev/null > /dev/null && test "`uname -i 2> /dev/null`" != "unknown"; then 1035 echo ${UNAME_MACHINE}-pc-os2-knix 1036 else 1037 echo ${UNAME_MACHINE}-pc-os2-emx 1038 fi 1035 1039 exit ;; 1036 1040 i*86:XTS-300:*:STOP) -
trunk/essentials/net-misc/wget/config.sub
r3440 r3474 121 121 case $maybe_os in 122 122 nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \ 123 kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) 123 kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova* | \ 124 os2-knix* | nt*-knix* | linux-knix*) 124 125 os=-$maybe_os 125 126 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` … … 1190 1191 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ 1191 1192 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ 1192 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* | -skyos*) 1193 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* | -skyos* \ 1194 | -linux-knix* | -nt*-knix*) 1193 1195 # Remember, each alternative MUST END IN *, to match a version number. 1194 1196 ;;
Note:
See TracChangeset
for help on using the changeset viewer.