bdb06975e0cfcd09174a8b4e9c216628068fdf85 maximilianh Wed Apr 30 09:14:53 2025 +0200 forgot freetype in gbic diff --git src/product/installer/browserSetup.sh src/product/installer/browserSetup.sh index 2e34fa174ac..5c8c2abaf54 100755 --- src/product/installer/browserSetup.sh +++ src/product/installer/browserSetup.sh @@ -1423,31 +1423,31 @@ # install clang, brew and configure Apple's Apache, so we can build the tree on OSX function setupBuildOsx () { # install clang installOsxDevTools which -s brew > /dev/null if [[ $? != 0 ]] ; then echo2 Homebrew not found. Installing now. ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" else brew update fi echo2 Installing homebrew packages libpng, openssl, mariadb, git - brew install libpng openssl mariadb git + brew install libpng openssl mariadb git freetype echo2 Allowing write access for all on Apple\'s Apache htdocs/cgi-bin directories. echo2 The chmod command requires sudo - please enter the admin password now: sudo chmod a+rw /Library/WebServer/CGI-Executables sudo chmod a+rw /Library/WebServer/Documents # create symlinks to Apple's paths so all our normal makefiles work if [ ! -e /usr/local/apache ]; then echo2 Creating /usr/local/apache to fill with symlinks later sudo mkdir -p /usr/local/apache sudo chmod a+rw /usr/local/apache fi if [ ! -e /usr/local/apache/cgi-bin ]; then echo2 Creating symlink /usr/local/apache/cgi-bin to /Library/WebServer/CGI-Executables