A forum for SAC developers to exchange ideas about SAC enhancements, bug fixes, etc.
This list has moved to https://groups.google.com/a/earthscope.org/g/sac-community.
- Email address
- sac-dev@lists.ds.iris.edu
- Type
-
Announcement
Announcement lists are for sending a one-way message to a wide audience. Anyone can post a message — only subscribe if you want to start receiving this type of announcement.
- Subscribers
- 178
- Moderated by
- IRIS Webmaster
- Related tags
- None
September
August
July
June
May
April
March
February
January
August
July
June
May
April
March
February
January
December
November
October
September
August
July
June
May
April
March
February
January
November
October
September
August
July
June
May
April
March
February
January
December
November
October
September
August
July
June
May
April
March
February
January
November
October
September
August
July
June
May
April
March
February
January
December
November
October
September
August
July
June
May
April
March
February
January
November
October
September
August
July
June
May
April
March
February
January
December
November
October
September
August
July
June
May
April
March
February
January
November
October
September
August
July
June
May
April
March
February
January
December
November
October
September
August
July
June
May
April
March
February
January
November
October
September
August
July
June
May
April
March
February
January
December
November
October
September
August
July
June
May
April
March
February
January
November
October
September
August
July
June
May
April
March
February
January
December
November
October
September
August
July
June
May
April
March
February
January
November
October
September
August
July
June
May
April
March
February
January
December
November (1)
October
September
August (1)
July (1)
June (6)
May
April (1)
March
February
January (1)
November (1)
October
September
August (1)
July (1)
June (6)
May
April (1)
March
February
January (1)
December (1)
November
October
September
August
July
June
May
April (2)
March
February (1)
January (2)
November
October
September
August
July
June
May
April (2)
March
February (1)
January (2)
December
November (1)
October
September (2)
August (1)
July
June (11)
May
April
March
February
January
November (1)
October
September (2)
August (1)
July
June (11)
May
April
March
February
January
December
November
October
September
August (2)
July
June
May (1)
April (1)
March (1)
February
January
November
October
September
August (2)
July
June
May (1)
April (1)
March (1)
February
January
December
November (1)
October (25)
September (33)
August (12)
July
June (1)
May
April
March
February
January (7)
November (1)
October (25)
September (33)
August (12)
July
June (1)
May
April
March
February
January (7)
December
November (4)
October (1)
September (2)
August (1)
July (1)
June
May (1)
April
March (3)
February
January (1)
November (4)
October (1)
September (2)
August (1)
July (1)
June
May (1)
April
March (3)
February
January (1)
Active Message Threads for October 2008
Kuang He,
I tested your pager patch and was quite happy with it.
The one which searches /bin and /usr/bin for less and then more
If any one else would like to comment on this patch, please do so.
It is labeled as [1] below.
Cheers
Brian
>
> [1] http://www.iris.washington.edu/pipermail/sac-dev/2008-September/
> 000108.html
No replies
Dear all
one of the little used but very useful features of sac is the
availability to write user-defined commands (those which are loaded via
load). What do you think about introducing a reposity for these on the
sac website which would allow users to share these self-made commands.
Maybe the best of them could eventually become part of the core code in
future version.
Frederik
--
Frederik Tilmann
Bullard Laboratories Tel. +44 1223 765545
Department of Earth Sciences Fax…
[more]
No replies
Kuang
I was looking at your readline patch to handle the real readline
library when used with a script.
http://www.iris.washington.edu/pipermail/sac-dev/2008-September/
000109.html
It looks like when the tty is not being used (use_tty()) you avoid
the select_loop().
This seems fine with me. We also have very similar code in the zgtmsg
() and
the code you added looks a lot like the original zgpmsg() code. Can
we do some
consolidation here, possibly just within the zgpmsg() to begin w…
[more]
Replies
-
Re: readline/libedit patch - Kuang He - 2008-10-08 04:23:29
-
Re: readline/libedit patch - Brian Savage - 2008-10-08 17:01:54
-
-
Re: readline/libedit patch - Kuang He - 2008-10-10 02:36:08
Dear All,
I sent this to SAC-help and got only one reply from someone else
who had had the same problem, but no solution. Since you are
working on the latest edition, I'm wondering if you have come
across, and addressed, this problem.
Regards,
Sheila.
-------- Original Message --------
Subject: GSE writing
Date: Tue, 30 Sep 2008 08:05:05 +0100
From: Sheila Peacock <sheila@blacknest.gov.uk>
Organization: AWE Blacknest
To: sac-help@iris.washington.edu
Dear All,
SAC v. 101.1 either fails or…
[more]
Hi all,
Attached is a patch to eliminate duplicate `-I../inc' parameters in
generated Makefiles.
While compiling, instead of seeing something like:
gcc -DHAVE_CONFIG_H -I. -I../inc -I../inc -c -o
amf/allamb.o amf/allamb.c
We'll see this instead:
gcc -DHAVE_CONFIG_H -I../inc -c -o amf/allamb.o amf/allamb.c
Reference:
http://www.gnu.org/software/automake/manual/automake.html#Program-variables
Best regards,
--
Kuang He
Department of Physics
University of Connecti…
[more]
No replies
Kuang He
2008-10-01 22:21:51
- 2008-10-06 21:55:51
Hi, all
VPATH builds [1] are preferred by some people for the following reasons:
1. They prevent the build process form cluttering your source
directory with all sorts of build files.
2. To remove a build, all you have to do is remove the build directory.
3. You can build the same source multiple times using different
options. This is very useful if you would like to write a script that
will run the test suite for a package while the package is configured
in many different ways (e.g.…
[more]
Replies
-
Re: Patch to make our build system support VPATH builds - George Helffrich - 2008-10-02 03:50:25
-
Re: Patch to make our build system support VPATH builds - Kuang He - 2008-10-01 23:11:58
-
Re: Patch to make our build system support VPATH builds - Kuang He - 2008-10-02 02:58:08
-
Re: Patch to make our build system support VPATH builds - Brian Savage - 2008-10-02 23:06:26
-
-
Re: Patch to make our build system support VPATH builds - George Helffrich - 2008-10-05 19:51:17
-
Re: Patch to make our build system support VPATH builds - Brian Savage - 2008-10-06 18:47:36
-
Re: Patch to make our build system support VPATH builds - Brian Savage - 2008-10-06 19:35:17
-
Re: Patch to make our build system support VPATH builds - Kuang He - 2008-10-06 20:25:31
-
libedit - Arthur Snoke - 2008-10-06 21:01:55
-
Re: libedit - Kuang He - 2008-10-06 21:55:51
-
-
-
Re: Patch to make our build system support VPATH builds - Brian Savage - 2008-10-06 21:08:31
-
-
-
-
Hi all,
Running autoreconf is basically equivalent to running the script
./bootstrap in the CVS repository, and is sometimes a little faster.
Attached is a patch to suppress the following warnings when running
autoreconf. Plus, with this patch, we don't need to add the
'--foreign' parameter to automake anymore.
Just a thought: maybe we'd better pay attention to the first warning below?
$ autoreconf
src/Makefile.am:14: `CFLAGS' is a user variable, you should not override it;
src/Makefile.am:1…
[more]
No replies
Kuang He
2008-10-01 22:22:59
- 2008-10-02 02:20:38
Hi all,
Right now, in a source tree that has been configured with libedit, if
we use `make clean', all the generated files and directories under
libedit/ would be cleaned. However, if we use `make distclean', which
is supposed to be a superset of `make clean', not all the generated
files/dirs are cleaned properly. Like this:
$ cd libedit
$ make distclean
$ ll
total 16K
drwxr-xr-x 3 icrazy icrazy 4.0K Sep 30 02:15 include
drwxr-xr-x 2 icrazy icrazy 4.0K Sep 30 02:15 lib
drwxr-xr-x 5 icrazy icr…
[more]
Replies
-
Re: Patch to fix a small problem with `make distclean' - Arthur Snoke - 2008-10-02 02:20:38