diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2012-03-07 21:02:41 -0800 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2012-03-07 21:02:41 -0800 |
commit | 1986fcc6afee53bf43bad1ee3f841c344a5c8e70 (patch) | |
tree | 02a643d314bb0f040108595238ee65cb34a4a942 /xorg/X11R7.6/buildx.sh | |
parent | 5b40f518c187e172658e91c42eef713312485a79 (diff) | |
download | xrdp-proprietary-1986fcc6afee53bf43bad1ee3f841c344a5c8e70.tar.gz xrdp-proprietary-1986fcc6afee53bf43bad1ee3f841c344a5c8e70.zip |
xrdp:X11R7.6: work on building X11rdp
Diffstat (limited to 'xorg/X11R7.6/buildx.sh')
-rwxr-xr-x | xorg/X11R7.6/buildx.sh | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/xorg/X11R7.6/buildx.sh b/xorg/X11R7.6/buildx.sh index deeae127..40a44f64 100755 --- a/xorg/X11R7.6/buildx.sh +++ b/xorg/X11R7.6/buildx.sh @@ -21,6 +21,7 @@ # flex bison libxml2-dev intltool # xsltproc +# xutils-dev python-libxml2 download_file() { @@ -193,6 +194,7 @@ make_it() patch -p1 < ../../$mod_name.patch fi # now configure + echo "executing ./configure --prefix=$PREFIX_DIR $mod_args" ./configure --prefix=$PREFIX_DIR $mod_args if [ $? -ne 0 ]; then echo "configuration failed for module $mn" @@ -277,8 +279,11 @@ fi echo "using $PREFIX_DIR" export PKG_CONFIG_PATH=$PREFIX_DIR/lib/pkgconfig:$PREFIX_DIR/share/pkgconfig -export PATH=$PREFIX_DIR/bin:$PATH -export LD_LIBRARY_PATH=$PREFIX_DIR/lib + +# using this seems to cause more trouble than good +#export PATH=$PREFIX_DIR/bin:$PATH +#export LD_LIBRARY_PATH=$PREFIX_DIR/lib + # really only needed for x84 export CFLAGS=-fPIC @@ -335,4 +340,18 @@ do done < $data_file +echo "build for X OK" + +X11RDPBASE=$PREFIX_DIR +export X11RDPBASE + +cd rdp +make +if [ $? -ne 0 ]; then + echo "" + echo "X11rdp make failed" + echo "" + exit 1 +fi + echo "All done" |