Skip to content
Snippets Groups Projects
Commit db3bb369 authored by rtoy's avatar rtoy
Browse files

Ticket #22

tools/create-target.sh:
o If lisp variant is solaris using Sun C, setup default motif config
  to use Sun C too.

motif/server/Config.solaris_sunc:
o New config file for building motifd using Sun C.
parent ae7e9d7b
No related branches found
No related tags found
No related merge requests found
# -DSVR4 is needed for X and for Solaris.
# The motif includes are in /usr/dt/include
# The Motif libraries are in /lib and /usr/dt/lib
CFLAGS = -O -DSVR4 -I. -I/usr/dt/include -I/usr/openwin/include
LDFLAGS = -L/usr/dt/lib -R/usr/dt/lib -L/usr/openwin/lib -R/usr/openwin/lib
LIBS = -lXm -lXt -lX11 -lsocket -lnsl -lgen
CC = cc
# This def assumes you are building in the same or parallel
# tree to the CVS souce layout. Sites may need to customize
# this path.
VPATH = ../../../src/motif/server/
...@@ -70,7 +70,8 @@ if [ "$MOTIF_VARIANT" = "" ]; then ...@@ -70,7 +70,8 @@ if [ "$MOTIF_VARIANT" = "" ]; then
NetBSD*) MOTIF_VARIANT=NetBSD ;; NetBSD*) MOTIF_VARIANT=NetBSD ;;
OpenBSD*) MOTIF_VARIANT=OpenBSD ;; OpenBSD*) MOTIF_VARIANT=OpenBSD ;;
*_darwin) MOTIF_VARIANT=Darwin ;; *_darwin) MOTIF_VARIANT=Darwin ;;
sun4_solaris*|sparc*) MOTIF_VARIANT=solaris ;; sun4_solaris_gcc|sparc_gcc) MOTIF_VARIANT=solaris ;;
sun4_solaris_sunc|sparc_sunc) MOTIF_VARIANT=solaris_sunc ;;
sun4c*) MOTIF_VARIANT=sun4c_411 ;; sun4c*) MOTIF_VARIANT=sun4c_411 ;;
hp700*) MOTIF_VARIANT=hpux_cc ;; hp700*) MOTIF_VARIANT=hpux_cc ;;
pmax_mach) MOTIF_VARIANT=pmax_mach ;; pmax_mach) MOTIF_VARIANT=pmax_mach ;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment