diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-24 07:31:40 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-24 07:46:01 +0100 |
commit | abda28b2763e48f8b6b77220a677c1cdeb5d8970 (patch) | |
tree | f1b533fcb85b8e32001bd8e4183768fc2631ac67 /src/Makefile.am | |
parent | 7b11290de97fa6cb2dabfbd6d2099da875ccc099 (diff) | |
download | sciteco-abda28b2763e48f8b6b77220a677c1cdeb5d8970.tar.gz |
introduced $SCITECOCONFIG env variable, and set different default for $SCITECOPATH on Windows
* $SCITECOCONFIG has been introduced, so have a macro-accessible location
for the profile, buffer session etc.
This is set to the program dir on Windows. That way, the config files
will be found, regardless of the current working dir, but it may also
be set up for Unix-like environments on Windows.
* $SCITECOPATH defaults to the program dir + "/lib" now on Windows.
* The default profile is now always called ".teco_ini". Also on Windows.
Platform differences like this would need to be documented.
* The sample teco.ini has been renamed to "sample.teco_ini" for clarity
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 9972f71..1819c19 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -7,7 +7,7 @@ if CLANG AM_CXXFLAGS += -Wno-mismatched-tags endif -AM_CPPFLAGS = -D'DEFAULT_SCITECOPATH="@DEFAULT_SCITECOPATH@"' +AM_CPPFLAGS = -D'SCITECOLIBDIR="@scitecolibdir@"' if NEED_COMPAT AM_CPPFLAGS += -I@top_srcdir@/compat endif |