Check-in [4395e6083a]
Overview
Comment:Updated to respect --prefix
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 4395e6083a68bbdc791e7994a4763084d799910d
User & Date: rkeene on 2016-01-25 18:09:15
Other Links: manifest | tags
Context
2016-01-25
18:18
Added support for a ClientData type check-in: 633a01c5d6 user: rkeene tags: trunk
18:09
Updated to respect --prefix check-in: 4395e6083a user: rkeene tags: trunk
2015-02-02
16:27
Updated to latest autoconf headers check-in: b61a769f0b user: rkeene tags: trunk
Changes

Modified Makefile.in from [86ec43e9b7] to [7c5884e932].

1
2
3
4
5
6
7
8
prefix = UNSPECIFIED
exec_prefix = @exec_prefix@
libdir = @libdir@

TARGET = @TARGET@

CC = @CC@
CPP = @CPP@
|







1
2
3
4
5
6
7
8
prefix = @prefix@
exec_prefix = @exec_prefix@
libdir = @libdir@

TARGET = @TARGET@

CC = @CC@
CPP = @CPP@

Modified configure.ac from [3714b15ff7] to [823490a303].

1
2



3
4
5
6
7
8
9
dnl Define ourselves
AC_INIT(tcc4tcl, @@VERS@@)




dnl Checks for programs.
AC_PROG_CC
AC_PROG_CPP
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_GNU_SOURCE


>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
dnl Define ourselves
AC_INIT(tcc4tcl, @@VERS@@)

dnl Default prefix should be "UNSPECIFIED" to use magic in the Makefile
ac_default_prefix="UNSPECIFIED"

dnl Checks for programs.
AC_PROG_CC
AC_PROG_CPP
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_GNU_SOURCE