Overview
Comment: | Fixed incorrectly applied previous commit |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4e6359ae47b826637f4a3104a3c46ab9 |
User & Date: | rkeene on 2014-05-05 16:29:34 |
Other Links: | manifest | tags |
Context
2014-05-05
| ||
17:16 | Updated to keep GCC headers into gcc directory check-in: e8cbf3c10e user: rkeene tags: trunk | |
16:29 | Fixed incorrectly applied previous commit check-in: 4e6359ae47 user: rkeene tags: trunk | |
16:22 | Merged in alternate trunk from old development check-in: 75e4d5fbed user: rkeene tags: trunk | |
Changes
Modified Makefile.in from [a2cdbe9632] to [a463bb46e0].
|
Modified build/pre.sh from [29bd57d26a] to [a84ae705c9].
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | - - - - - + + + + - - + + + + + - - + + + + + - - + + + + + + + + + | #! /bin/bash cd "$(dirname "$(which "$0")")/.." || exit 1 # Generate configure script ./build/autogen.sh # Download TCC |
Modified configure.ac from [4fb589986a] to [ed00a008d9].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | + - + - + - + + + + + + + + + + - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + - + | dnl Define ourselves AC_INIT(tcc4tcl, @@VERS@@) dnl Checks for programs. AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_INSTALL AC_GNU_SOURCE AC_LANG(C) dnl Determine system information DC_CHK_OS_INFO dnl Determine if a shared or static build is requested AC_ARG_ENABLE([static], AS_HELP_STRING([--enable-static], [build static library instead of shared library]), [ if test "$enableval" = "no"; then |