ObjFW  Check-in [141b8181c0]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:.travis.yml: Remove STDOUT_SIMPLE This no longer exists, as isatty() is used instead now.
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 141b8181c08e8876be8e5a13cfeb9d61944100ff086ce4a54e5d42378843c7dd
User & Date: js 2020-06-14 19:00:37.623
Context
2020-06-16
21:46
Don't use utimes() on AmigaOS check-in: 137dc2107d user: js tags: trunk
2020-06-14
21:52
Merge trunk into amiga-library branch check-in: cf40aa9c66 user: js tags: amiga-library
19:00
.travis.yml: Remove STDOUT_SIMPLE check-in: 141b8181c0 user: js tags: trunk
16:07
Check thread attributes before spawning the thread check-in: 164475afdb user: js tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to .travis.yml.
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309

  - if [ "$config" = "amigaos" ]; then
            wget -q https://franke.ms/download/amiga-gcc.tgz;
            tar -C / -xzf amiga-gcc.tgz;
    fi

script:
  # This needs to use ed on macOS, as it has no GNU sed, and sed on Linux, as
  # some Travis hosts have no ed.
  - if [ "$TRAVIS_OS_NAME" = "osx" ]; then
            echo -e '%s/-DSTDOUT$/&_SIMPLE/\nwq' | ed -s tests/Makefile;
    else
            sed -i 's/-DSTDOUT$/&_SIMPLE/' tests/Makefile;
    fi

  - build() {
            if ! git clean -fxd >/tmp/clean_log 2>&1; then
                    cat /tmp/clean_log;
                    exit 1;
            fi;
            echo ">> Configuring with $@";
            ./autogen.sh;







<
<
<
<
<
<
<
<







288
289
290
291
292
293
294








295
296
297
298
299
300
301

  - if [ "$config" = "amigaos" ]; then
            wget -q https://franke.ms/download/amiga-gcc.tgz;
            tar -C / -xzf amiga-gcc.tgz;
    fi

script:








  - build() {
            if ! git clean -fxd >/tmp/clean_log 2>&1; then
                    cat /tmp/clean_log;
                    exit 1;
            fi;
            echo ">> Configuring with $@";
            ./autogen.sh;