2abc28d1f2
Version 4.2 fixes: 1) Fixed problems with windows that have a compound text title 2) Fixed problems with the cursor font name 3) error.c will now compile under Solaris 2.6 4) Fixed misc. compilation warnings. Some survive in error.c and states.c 5) Fixed warp function when two screens have the same program: warp will now look first on the screen containing the mouse pointer 6) Fixed hot key functions when num lock/shift lock might be pressed 7) Fixed problem with AutoRootMenu startup 8) Fixed problem with VirtualIconic resource
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
--- Imakefile.orig Mon Jan 24 22:45:05 1994
|
|
+++ ./Imakefile Fri Jul 16 22:18:41 1999
|
|
@@ -45,8 +45,8 @@
|
|
/**/#MORECCFLAGS=-DOW_I18N_L3 -DSHAPE -DIDENT
|
|
|
|
/**/# For a generic Solaris 2.x system, I'd suggest
|
|
-MORECCFLAGS=-DOW_I18N_L3 -DSHAPE -DSVR4 -DSYSV -DIDENT -x O4
|
|
-
|
|
+#MORECCFLAGS=-DOW_I18N_L3 -DSHAPE -DSVR4 -DSYSV -DIDENT -x O4
|
|
+MORECCFLAGS= -DXPM -DOW_I18N_L3 -DSHAPE -DREGEXP
|
|
/**/#
|
|
/**/# Set MORELDFLAGS to any link options you want. Be sure to add -lxpm if you
|
|
/**/# want to include XPM support. For a generic Solaris 1.x
|
|
@@ -54,8 +54,8 @@
|
|
/**/#MORELDFLAGS=-L${OPENWINHOME}/lib
|
|
/**/#
|
|
/**/# For Solaris 2.x, I'd suggest
|
|
-MORELDFLAGS=-L${OPENWINHOME}/lib -R ${OPENWINHOME}/lib -lintl
|
|
-
|
|
+#MORELDFLAGS=-L${OPENWINHOME}/lib -R ${OPENWINHOME}/lib -lintl
|
|
+MORELDFLAGS=-L${OPENWINHOME}/lib -lcompat -lXpm
|
|
|
|
/**/# No more changes needed
|
|
|
|
@@ -67,7 +67,7 @@
|
|
|
|
DEFINES = $(MORECCFLAGS)
|
|
SYS_LIBRARIES = -ll -lm
|
|
-INCLUDES = -I$(HEADER_DEST) -I$(TOP) $(XPMINCDIR)
|
|
+INCLUDES = -I$(HEADER_DEST) -I$(TOP) -I$(XPMINCDIR)
|
|
DEPLIBS =
|
|
LOCAL_LIBRARIES = $(MORELDFLAGS) $(OLGXLIB) $(XLIB)
|
|
|
|
@@ -139,7 +139,9 @@
|
|
@for i in $(MANPAGES) ;\
|
|
do \
|
|
echo "installing $$i"; \
|
|
+ $(RM) $(DESTDIR)$(MANDIR)/`basename $$i .man`.$(MANSUFFIX)* ; \
|
|
$(INSTALL) -c $(INSTMANFLAGS) $$i $(DESTDIR)$(MANDIR)/`basename $$i .man`.$(MANSUFFIX) ; \
|
|
+ $(COMPRESSMANCMD) $(DESTDIR)$(MANDIR)/`basename $$i .man`.$(MANSUFFIX) ; \
|
|
done
|
|
|
|
#include <XView.prog>
|