Check-in [dc8653dae7]
Overview
Comment:Updated to work correctly with cross-compiling
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1:dc8653dae79a229b21028c75a5fa877d18c42574
User & Date: rkeene on 2014-12-19 02:33:00
Other Links: manifest | tags
Context
2015-01-20
18:02
Updated to disable SSLv2 in the TLS build script check-in: d5793ac87e user: rkeene tags: trunk
2014-12-19
02:33
Updated to work correctly with cross-compiling check-in: dc8653dae7 user: rkeene tags: trunk
02:18
Added recently added extensions to the web interface check-in: 7be354cf06 user: rkeene tags: trunk
Changes

Modified yajltcl/build.sh from [ba99dc5121] to [4f55cc724b].

    60     60   		cp -rp ../buildsrc/* './'
    61     61   	fi
    62     62   
    63     63   	# Build YAJL
    64     64   	(
    65     65   		cd "${YAJLBUILDDIR}" || exit 1
    66     66   		./configure -p "$(pwd)/INST" || exit 1
    67         -		make || exit 1
    68     67   		make install || exit 1
    69     68   		rm -f INST/lib/*.so*
    70     69   		mv INST/lib/libyajl_s.a INST/lib/libyajl.a || exit 1
    71     70   	) || exit 1
    72     71   
    73     72   	# Include YAJL's build in our pkg-config path
    74     73   	PKG_CONFIG_PATH="${YAJLBUILDDIR}/INST/share/pkgconfig"