Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Ultimate fix for X11 on Macosx |
|---|---|
| Timelines: | family | ancestors | descendants | both | autosetup |
| Files: | files | file ages | folders |
| SHA1: |
b303ef6ccce665be2044ffa5b84253a5 |
| User & Date: | hypnotoad 2015-03-31 22:20:45 |
Context
|
2015-05-05
| ||
| 17:54 | Make sherpa modified and simplified as a standalone script Sherpa and Kettle re-engineered to work direct from script check-in: ff0d449b72 user: hypnotoad tags: autosetup | |
|
2015-03-31
| ||
| 22:20 | Ultimate fix for X11 on Macosx check-in: b303ef6ccc user: hypnotoad tags: autosetup | |
|
2015-03-30
| ||
| 18:50 | Added a scripts directory to distribute helper scripts for Makefiles check-in: 47ed8c915e user: hypnotoad tags: autosetup | |
Changes
Changes to scripts/make_tcl.sh.
| ︙ | ︙ | |||
60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
cd ${SANDBOX}/tk
${FOSSIL} open ${DOWNLOAD}/tk.fos ${TK_FOSSIL_BRANCH}
fi
cd ${SANDBOX}/tk
${FOSSIL} update ${TK_FOSSIL_BRANCH}
cd ${TK_SRCPATH}
echo Build Dynamic Tk
if [ "${ODIE_HOST}" != "${ODIE_TARGET}" ] ; then
sh ./configure --prefix=${LOCAL_REPO} --libdir=${LOCAL_REPO}/lib --host=${ODIE_TARGET} ${TK_CONFIG_FLAGS}
else
sh ./configure --prefix=${LOCAL_REPO} --libdir=${LOCAL_REPO}/lib ${TK_CONFIG_FLAGS}
fi
make clean
make binaries
| > > > > > | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
cd ${SANDBOX}/tk
${FOSSIL} open ${DOWNLOAD}/tk.fos ${TK_FOSSIL_BRANCH}
fi
cd ${SANDBOX}/tk
${FOSSIL} update ${TK_FOSSIL_BRANCH}
cd ${TK_SRCPATH}
echo Build Dynamic Tk
if [ "${ODIE_OS}" == "macosx" ] ; then
if [ "${ODIE_CONFIG_WINDOWSYSTEM}" == "x11" ] ; then
export CPPFLAGS=-I/opt/X11/include
fi
fi
if [ "${ODIE_HOST}" != "${ODIE_TARGET}" ] ; then
sh ./configure --prefix=${LOCAL_REPO} --libdir=${LOCAL_REPO}/lib --host=${ODIE_TARGET} ${TK_CONFIG_FLAGS}
else
sh ./configure --prefix=${LOCAL_REPO} --libdir=${LOCAL_REPO}/lib ${TK_CONFIG_FLAGS}
fi
make clean
make binaries
|
| ︙ | ︙ |