mailing-list for TeXmacs Users

Text archives Help


patch to "configure" for building on Solaris x86


Chronological Thread 
  • From: Kostas Oikonomou <address@hidden>
  • To: TeXmacs <address@hidden>
  • Subject: patch to "configure" for building on Solaris x86
  • Date: Mon, 26 Jun 2006 13:30:21 -0400
  • Organization: AT&T Labs Research

I recently built TeXmacs 1.0.6.3 on my Toshiba Satellite laptop running Solaris 10 x86, and I am very happy with it.

All that is needed is to put the "i*86-*-solaris*" code snippet that follows in "configure":

case "${host}" in
i*86-*-linux* | x86_64-*-linux*)
echo "$as_me:$LINENO: result: final adjustments for an Intel or AMD GNU/Linux host" >&5
echo "${ECHO_T}final adjustments for an Intel or AMD GNU/Linux host" >&6
CONFIG_CXXOPTIMIZE="-O3 -fexpensive-optimizations"
;;
i*86-*-freebsd* | x86_64-*-freebsd*)
echo "$as_me:$LINENO: result: final adjustments for an Intel or AMD GNU/BSD host" >&5
echo "${ECHO_T}final adjustments for an Intel or AMD GNU/BSD host" >&6
CONFIG_CXXOPTIMIZE="-O3 -fexpensive-optimizations"
;;
i*86-*-solaris*)
echo "$as_me:$LINENO: result: final adjustments for an Intel Solaris host" >&5
echo "${ECHO_T}final adjustments for an Intel Solaris host" >&6
CONFIG_OS="Solaris_x86"
CONFIG_CXXOPTIMIZE="-O3"
CONFIG_BPATH="-Wl,-R,"
CONFIG_BX="$X_LIBS -lXext -lX11 -lsocket"
;;


(And the fix in src/Window/X/x_loop.cpp that I reported previously, which applies to any Solaris machine.)

Kostas


  • patch to "configure" for building on Solaris x86, Kostas Oikonomou, 06/26/2006

Archive powered by MHonArc 2.6.19.

Top of page