-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make this build and install under Linux:
Do not define USE_BYACC, since not all Linuxen have byacc. Patch a grammar file accordingly. Use -Wl,-rpath flags where necessary. This should close PR pkg/19860.
- Loading branch information
jschauma
committed
May 19, 2003
1 parent
bb520a4
commit 50603c6
Showing
6 changed files
with
56 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
$NetBSD: patch-au,v 1.1 2003/05/19 19:43:17 jschauma Exp $ | ||
|
||
--- tools/wml/Uil.y.orig Mon May 19 13:57:46 2003 | ||
+++ tools/wml/Uil.y Mon May 19 13:58:48 2003 | ||
@@ -396,6 +396,7 @@ | ||
| WIDE_CHARACTER { $$ = $1; $$.b_type = sym_k_wchar_string_value; } | ||
| FONTSET { $$ = $1; $$.b_type = sym_k_fontset_value; } | ||
| WIDGET { $$ = $1; $$.b_type = sym_k_widget_ref_value; } | ||
+ ; | ||
/* End for fixing CR 5888 */ | ||
|
||
string_table_type | ||
@@ -1058,10 +1059,11 @@ | ||
sar_private_error( &$$ ); | ||
} | ||
} | ||
+ ; | ||
|
||
non_export_value | ||
: COLOR_TABLE LEFT_PAREN color_list RIGHT_PAREN { sar_make_color_table( &$$, &$3, &$1); } | ||
- | ||
+ ; | ||
/* END HaL fix CR 5427 */ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
$NetBSD: patch-av,v 1.1 2003/05/19 19:43:17 jschauma Exp $ | ||
|
||
--- config/cf/linux.cf.orig Mon May 19 14:30:58 2003 | ||
+++ config/cf/linux.cf Mon May 19 14:30:22 2003 | ||
@@ -1,6 +1,11 @@ | ||
XCOMM platform: $TOG: linux.cf /main/36 1997/06/16 22:21:03 kaleb $ | ||
XCOMM platform: $XFree86: xc/config/cf/linux.cf,v 3.57.2.19 1999/09/04 09:12:27 dawes Exp $ | ||
|
||
+#define SharedLibraryLoadFlags -shared -Wl,-rpath,$(PREFIX)/lib -Wl,-rpath,$(X11PREFIX)/lib | ||
+#ifndef ExtraLoadFlags | ||
+#define ExtraLoadFlags -Wl,-rpath,$(PREFIX)/lib -Wl,-rpath,$(X11PREFIX)/lib | ||
+#endif | ||
+ | ||
#ifndef LinuxElfDefault | ||
#define LinuxElfDefault YES | ||
#endif |