diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-05-22 10:24:57 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-05-22 10:24:57 +0000 |
commit | c7856579a49269a9b867a373d3cee7c13e49d562 (patch) | |
tree | 5e7b14a5d7263dd1f173e29997cb5815dd006d57 /x11/emu/files/patch-b | |
parent | Add specJava to subdirs. (diff) |
Fix two emu problems:
1. Decorations disabled by default.
2. No-decoration case not properly handled in menus, resulting in seg fault.
Notes
Notes:
svn path=/head/; revision=3117
Diffstat (limited to 'x11/emu/files/patch-b')
-rw-r--r-- | x11/emu/files/patch-b | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/x11/emu/files/patch-b b/x11/emu/files/patch-b new file mode 100644 index 000000000000..2d3236ff2001 --- /dev/null +++ b/x11/emu/files/patch-b @@ -0,0 +1,30 @@ +*** client/Imakefile.orig Wed May 22 03:07:51 1996 +--- client/Imakefile Wed May 22 03:16:11 1996 +*************** +*** 11,22 **** + + #ifdef USE_MOTIF + TOOLKIT_LIBS = XmClientDepLibs +! EXTRA_DEFINES = -DMOTIF + EXTRA_SRCS = aux_motif.c + EXTRA_OBJS = aux_motif.o + + #else + TOOLKIT_LIBS = XawClientDepLibs + EXTRA_SRCS = aux_athena.c + EXTRA_OBJS = aux_athena.o + #endif +--- 11,23 ---- + + #ifdef USE_MOTIF + TOOLKIT_LIBS = XmClientDepLibs +! EXTRA_DEFINES = -DMOTIF -DDECORATIONS + EXTRA_SRCS = aux_motif.c + EXTRA_OBJS = aux_motif.o + + #else + TOOLKIT_LIBS = XawClientDepLibs ++ EXTRA_DEFINES = -DDECORATIONS + EXTRA_SRCS = aux_athena.c + EXTRA_OBJS = aux_athena.o + #endif |