diff --git a/build-openbsd b/build-openbsd index 443aac0..7a62a22 100755 --- a/build-openbsd +++ b/build-openbsd @@ -37,7 +37,6 @@ echo "Building GNUstep for OpenBSD" echo "" CPUS=4 -SUDO='sudo LD_LIBRARY_PATH=$LD_LIBRARY_PATH' scriptsdir="`pwd`/tools-scripts" # Build make @@ -62,7 +61,7 @@ echo "===" echo "======== Build gui" cd ../libs-gui ${SUDO} ${MAKE} clean -./configure --with-x --enable-speech +./configure --with-x --enable-speech --enable-imagemagick ${MAKE} debug=yes messages=yes -j4 ${SUDO} -u root ./install.sh ${GNUSTEP_ROOT} ${MAKE} echo "===" diff --git a/install-dependencies-openbsd b/install-dependencies-openbsd index 3857bef..c5cc3ee 100755 --- a/install-dependencies-openbsd +++ b/install-dependencies-openbsd @@ -1,4 +1,4 @@ -git #!/bin/sh +#!/bin/sh # change to doas if you use doas SUDO=sudo @@ -9,6 +9,6 @@ echo "NOTE: This file assumes that Xorg is installed and that sudo is installed. echo " Change the SUDO= variable at top of script to use 'doas' instead" echo " Also, 'doas' or 'sudo' should be properly configured to allow running the script." echo "Installing..." -${SUDO} pkg_add curl git sudo-- gmake cmake windowmaker jpeg tiff png libiconv libxml libxslt gnutls libffi icu4c cairo avahi gcc%${GCC_MAJOR} gobjc%${GCC_MAJOR} gmp gdb gnustep-libobjc2 flite libao libsndfile giflib cups aspell +${SUDO} pkg_add curl git sudo-- gmake cmake windowmaker jpeg tiff png libiconv libxml libxslt gnutls libffi icu4c cairo avahi gcc%${GCC_MAJOR} gobjc%${GCC_MAJOR} gmp gdb gnustep-libobjc2 flite libao libsndfile giflib cups aspell ImageMagick echo "Done..." exit 0