use AF_UNIX for the family

2001-05-22  JP Rosevear  <jpr@ximian.com>

	* config-log.c (bind_socket): use AF_UNIX for the family

	* location.c (run_backend_proc): use putenv() rather than setenv()
	for solaris

	* config-log.c: define the SUN_LEN macro for those systems not
	having it
	(connect_socket): use the more portable domain type, PF_LOCAL
	seems to map to PF_UNIX on linux anyhow

2001-05-22  JP Rosevear  <jpr@ximian>

	* e-search-bar/Makefile.am: include gal cflags
This commit is contained in:
JP Rosevear 2001-05-22 22:07:34 +00:00 committed by JP Rosevear
parent 8a956cde95
commit f98e622027
3 changed files with 22 additions and 5 deletions

View file

@ -1479,9 +1479,9 @@ run_backend_proc (gchar *backend_id, gboolean do_get)
path = g_getenv ("PATH");
if (!strstr (path, XST_BACKEND_LOCATION)) {
path1 = g_strconcat (XST_BACKEND_LOCATION, ":", path,
NULL);
setenv ("PATH", path1, TRUE);
path1 = g_strconcat ("PATH=", XST_BACKEND_LOCATION,
":", path, NULL);
putenv (path1);
g_free (path1);
}