2000-02-29 03:04:32 +00:00
|
|
|
--- src/gide.c.orig Sun Feb 27 00:59:52 2000
|
|
|
|
+++ src/gide.c Mon Feb 28 00:50:43 2000
|
|
|
|
@@ -260,16 +260,16 @@
|
1999-10-21 05:49:49 +00:00
|
|
|
|
2000-02-29 03:04:32 +00:00
|
|
|
cfg->tab_width = 4;
|
|
|
|
cfg->incpath = (gchar *) realloc( cfg->incpath, 40 );
|
|
|
|
- strcpy( cfg->incpath, "/usr/include:/usr/local/include" );
|
|
|
|
+ strcpy( cfg->incpath, "/usr/include:%%LOCALBASE%%/include:%%X11BASE%%/include" );
|
|
|
|
cfg->ccopt = (gchar *) realloc( cfg->ccopt, 2 );
|
|
|
|
strcpy( cfg->ccopt, "" );
|
|
|
|
cfg->libpath = (gchar *) realloc( cfg->libpath, 40 );
|
|
|
|
- strcpy( cfg->libpath, "/lib:/usr/lib:/usr/local/lib" );
|
|
|
|
+ strcpy( cfg->libpath, "/lib:/usr/lib:%%LOCALBASE%%/lib:%%X11BASE%%/lib" );
|
|
|
|
cfg->ldopt = (gchar *) realloc( cfg->ldopt, 2 );
|
|
|
|
strcpy( cfg->ldopt, "" );
|
1999-10-21 05:49:49 +00:00
|
|
|
|
2000-02-29 03:04:32 +00:00
|
|
|
cfg->bash = (gchar *) realloc( cfg->bash, 20 );
|
|
|
|
- strcpy( cfg->bash, "/bin/bash" );
|
|
|
|
+ strcpy( cfg->bash, "/bin/sh" );
|
1999-10-21 05:49:49 +00:00
|
|
|
|
2000-02-29 03:04:32 +00:00
|
|
|
cfg->xterm = (gchar *) realloc( cfg->xterm, 10 );
|
|
|
|
strcpy( cfg->xterm, "xterm" );
|