--- make/build_jconsole.sh.orig 2019-01-06 17:19:19 UTC +++ make/build_jconsole.sh @@ -1,6 +1,6 @@ #!/usr/local/bin/bash # $1 is j32 or j64 -cd ~ +. make/jvars.sh common=" -fPIC -O1 -Wextra -Wno-unused-parameter " @@ -29,6 +29,14 @@ LINK=" -ledit -ldl -lncurses -m32 -mmacosx-version-min darwin_j64) COMPILE="$common -DREADLINE -mmacosx-version-min=10.5" LINK=" -ledit -ldl -lncurses -mmacosx-version-min=10.5 -o jconsole " +;; +freebsd_j32) +COMPILE="$common -m32 -DREADLINE" +LINK="-L${LOCALBASE}/lib -ledit -m32 -o jconsole " +;; +freebsd_j64) +COMPILE="$common -DREADLINE" +LINK="-L${LOCALBASE}/lib -ledit -o jconsole " ;; *) echo no case for those parameters ory'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/devel/hs-unexceptionalio
Commit message (Expand)AuthorAgeFilesLines
* lang/ghc: Update to 8.4.3 and bump PORTREVISION's of all Haskell ports.arrowd2018-06-301-1/+1
* Update lang/ghc 8.4.2 and the hs-* ports the newer versionstcberner2018-05-261-1/+1
* Switch C compiler used to compile GHC to base Clang.tcberner2018-02-10