diff options
author | rsc <devnull@localhost> | 2004-09-17 22:09:31 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-09-17 22:09:31 +0000 |
commit | 282c88f9de897056f7a2461216dbfdb51ab655f3 (patch) | |
tree | 41352a8f97673c4475b54a1a6ffbef82ff363685 /bin/9c | |
parent | b4c842f139b47e1c999eb395f348c236af83143b (diff) | |
download | plan9port-282c88f9de897056f7a2461216dbfdb51ab655f3.tar.gz plan9port-282c88f9de897056f7a2461216dbfdb51ab655f3.tar.bz2 plan9port-282c88f9de897056f7a2461216dbfdb51ab655f3.zip |
Bite the bullet. Have to use different
binaries on 2.4 and 2.6.
Diffstat (limited to 'bin/9c')
-rwxr-xr-x | bin/9c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -26,7 +26,13 @@ case "$tag" in *Darwin*) usegcc cflags="$ngflags -g3 -no-cpp-precomp" ;; *HP-UX*) cc=cc; cflags="-g -O -c -Ae" ;; -*Linux*) usegcc ;; +*Linux*) usegcc + case "`uname -r`" in + 2.6*) + cflags="$cflags -D__Linux26__" + ;; + esac + ;; *OSF1*) cc=cc; cflags="-g -O -c" ;; *SunOS*-cc) cc=cc; cflags="-g -O -c -xCC -D__sun__" |