aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-09-19 10:55:52 +0000
committerGerd Moellmann2001-09-19 10:55:52 +0000
commita269702287bf8e97aa9c4200ab0ee1d96d1d6746 (patch)
treecca3accbd866f24bdd1bebe79e6871b9e4096574 /src
parentebbd51085763d156542c5302d5929530c736ef25 (diff)
downloademacs-a269702287bf8e97aa9c4200ab0ee1d96d1d6746.tar.gz
emacs-a269702287bf8e97aa9c4200ab0ee1d96d1d6746.zip
(LD_SWITCH_SYSTEM, C_SWITCH_SYSTEM): Add /usr/pkg.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/s/netbsd.h4
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index a3abb506df1..c55917d77be 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12001-09-19 Gerd Moellmann <gerd@gnu.org> 12001-09-19 Gerd Moellmann <gerd@gnu.org>
2 2
3 * s/netbsd.h (LD_SWITCH_SYSTEM, C_SWITCH_SYSTEM): Add /usr/pkg.
4
3 * m/macppc.h (DATA_SEG_BITS): Also define for GCC 3. 5 * m/macppc.h (DATA_SEG_BITS): Also define for GCC 3.
4 6
52001-09-18 Gerd Moellmann <gerd@gnu.org> 72001-09-18 Gerd Moellmann <gerd@gnu.org>
diff --git a/src/s/netbsd.h b/src/s/netbsd.h
index d65244a0bfa..354ace7e9a0 100644
--- a/src/s/netbsd.h
+++ b/src/s/netbsd.h
@@ -77,14 +77,14 @@
77 says where to find X windows at run time. We convert it to a -rpath option 77 says where to find X windows at run time. We convert it to a -rpath option
78 which is what OSF1 uses. */ 78 which is what OSF1 uses. */
79#define LD_SWITCH_SYSTEM_tmp `echo LD_SWITCH_X_SITE_AUX | sed -e 's/-R/-Wl,-rpath,/'` 79#define LD_SWITCH_SYSTEM_tmp `echo LD_SWITCH_X_SITE_AUX | sed -e 's/-R/-Wl,-rpath,/'`
80#define LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_tmp /usr/local/lib 80#define LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_tmp -L/usr/pkg/lib -L/usr/local/lib
81 81
82/* The following is needed to make `configure' find Xpm, Xaw3d and 82/* The following is needed to make `configure' find Xpm, Xaw3d and
83 image include and library files if using /usr/bin/gcc. That 83 image include and library files if using /usr/bin/gcc. That
84 compiler seems to be modified to not find headers in 84 compiler seems to be modified to not find headers in
85 /usr/local/include or libs in /usr/local/lib by default. */ 85 /usr/local/include or libs in /usr/local/lib by default. */
86 86
87#define C_SWITCH_SYSTEM -I/usr/X11R6/include -I/usr/local/include -L/usr/local/lib 87#define C_SWITCH_SYSTEM -I/usr/X11R6/include -I/usr/pkg/include -I/usr/local/include -L/usr/pkg/lib -L/usr/local/lib
88 88
89#endif /* __ELF__ */ 89#endif /* __ELF__ */
90 90