Skip to content

Commit

Permalink
Fixed error message
Browse files Browse the repository at this point in the history
broke macos-intel into separate build and fixed openssl dylib path issues
  • Loading branch information
bjasspa committed Aug 7, 2024
1 parent 0d3cf75 commit c04ba95
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 128 deletions.
96 changes: 96 additions & 0 deletions .github/workflows/build-macos-intel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
name: Build macos-intel (macos-13)

on:
workflow_dispatch:
branches: [ master ]

jobs:
build:
runs-on: macos-13
name: Build on ${{ matrix.distro }} ${{ matrix.arch }}

steps:
- name: Install dependencies
run: |
echo INFO: uname -a
uname -a
echo INFO: sw_vers
sw_vers
echo INFO: OpenSSL 1
ls /usr/local/opt/openssl@3/
echo INFO: OpenSSL 2
ls /usr/local/opt/openssl@3/lib
brew install xquartz
- name: Checkout code
uses: actions/checkout@v4

- name: Compile macos-intel mec
run: |
cd ./microemacs/src
./build.sh -t c -a intel
- name: Compile macos-intel mew
run: |
cd ./microemacs/src
./build.sh -t w -a intel
- name: Create macos-intel binaries download
run: |
cd ./microemacs/bin
mv macos13-intel64-* macos13-intel64
cd ..
export MEVER=`./bin/macos13-intel64/mec -p @contribs/ver.emf`
zip -r ../downloads/Jasspa_MicroEmacs_${MEVER}_macos_intel_binaries bin/macos13-intel64 license.txt readme.txt
- name: Create macos-intel mecs
run: |
export MEVER=`./microemacs/bin/macos13-intel64/mec -p @microemacs/contribs/ver.emf`
cd ./microemacs/mesingle
rm -rf bin
mkdir -p bin/macos13-intel64
../bin/macos13-intel64/mec -p "@mesgen" -f -p ../bin/macos13-intel64/mec -t ../bin/macos13-intel64/tfs -o bin/macos13-intel64/mecs
zip -r ../../downloads/Jasspa_MicroEmacs_${MEVER}_macos_intel_mecs bin
- name: Create macos-intel mews
run: |
export MEVER=`./microemacs/bin/macos13-intel64/mec -p @microemacs/contribs/ver.emf`
cd ./microemacs/mesingle
rm -rf bin
mkdir -p bin/macos13-intel64
../bin/macos13-intel64/mec -p "@mesgen" -f -p ../bin/macos13-intel64/mew -t ../bin/macos13-intel64/tfs -o bin/macos13-intel64/mews
zip -r ../../downloads/Jasspa_MicroEmacs_${MEVER}_macos_intel_mews bin
- name: Create macos-intel OpenSSL download
run: |
cd ./microemacs/
export MEVER=`./bin/macos13-intel64/mec -p @contribs/ver.emf`
rm -rf tfs
mkdir -p tfs/bin/macos13-intel64
cd tfs/bin/macos13-intel64
cp /usr/local/opt/openssl@3/lib/libcrypto.3.dylib .
cp /usr/local/opt/openssl@3/lib/libssl.3.dylib .
cp /usr/local/opt/openssl@3/LICENSE.txt .
cp /usr/local/opt/openssl@3/README.md .
CRYPT_PATH=`otool -L libssl.3.dylib | grep libcrypt | cut -f 1 -d ' '`
install_name_tool -id @loader_path/libcrypto.3.dylib libcrypto.3.dylib
install_name_tool -id @loader_path/libssl.3.dylib libssl.3.dylib
install_name_tool -change $CRYPT_PATH @loader_path/libcrypto.3.dylib libssl.3.dylib
echo OTOOL crypto
otool -L libcrypto.3.dylib
echo OTOOL ssl
otool -L libssl.3.dylib
cd ../..
zip -r ../../downloads/Jasspa_MicroEmacs_${MEVER}_macos_intel_openssl bin
cd ..
./bin/macos13-intel64/tfs -o ../packages/Jasspa_MicroEmacs_${MEVER}_macos_intel64_openssl.tfs -a ./mesingle/tfs_hd tfs
- name: Upload macos-intel downloads
uses: actions/upload-artifact@v4
with:
name: macos-intel-downloads
path: downloads

- name: Upload macos-intel packages
uses: actions/upload-artifact@v4
with:
name: macos-intel-packages
path: packages
127 changes: 0 additions & 127 deletions .github/workflows/build-macos.yml

This file was deleted.

2 changes: 1 addition & 1 deletion microemacs/src/fileio.c
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ ffHttpFileOpen(meIo *io, meUInt rwflag, meUByte *url, meCookie *cookie, meInt fd
}
fl--;
if(cc == '\0')
return mlwrite(MWABORT|MWPAUSE,(meUByte *)"[Invalid URL, missing '/' after host - %s]",buff);
return mlwrite(MWABORT|MWPAUSE,(meUByte *)"[Invalid URL, missing '/' after host - %s]",url);
*dd = '\0';
if((prt == NULL) || (prt[0] == '\0'))
{
Expand Down

0 comments on commit c04ba95

Please sign in to comment.