Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -312,16 +312,7 @@ jobs:

- name: Prepare - Install tools
run: |
brew install automake autoconf-archive cmake libtool ninja

# libcxx build is not working with python >= 3.12
- name: Do not use preinstalled python >= 3.12
run: |
brew uninstall --ignore-dependencies [email protected]
[ -e /Library/Frameworks/Python.framework ] && \
sudo mv /Library/Frameworks/Python.framework /Library/Frameworks/Python.framework.dont-look-at-this
brew install [email protected]
ln -s "$(brew --prefix [email protected])/bin/python3" "$(brew --prefix [email protected])/bin/python"
brew install automake autoconf-archive cmake libtool ninja python-setuptools

- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v7
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<license file="License.txt" mime-type="text/plain"/>
<readme file="Readme.txt" mime-type="text/plain"/>
<pkg-ref id="com.firebirdsql.Firebird"/>
<options hostArchitectures="arm64"/>
<options customize="never" require-scripts="false"/>
<choices-outline>
<line choice="default">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<installer-gui-script minSpecVersion="1">
<title>Firebird Database Server (Classic)</title>
<title>Firebird Database Server</title>
<welcome file="Welcome.txt" mime-type="text/plain"/>
<license file="License.txt" mime-type="text/plain"/>
<readme file="Readme.txt" mime-type="text/plain"/>
<pkg-ref id="com.firebirdsql.Firebird"/>
<options hostArchitectures="x86_64"/>
<options customize="never" require-scripts="false"/>
<choices-outline>
<line choice="default">
Expand All @@ -14,5 +16,5 @@
<choice id="com.firebirdsql.Firebird" visible="false">
<pkg-ref id="com.firebirdsql.Firebird"/>
</choice>
<pkg-ref id="com.firebirdsql.Firebird" version="2.5.0" onConclusion="none">FirebirdCS.pkg</pkg-ref>
<pkg-ref id="com.firebirdsql.Firebird" version="4.0.0" onConclusion="none">Firebird.pkg</pkg-ref>
</installer-gui-script>
18 changes: 0 additions & 18 deletions builds/install/arch-specific/darwin/DistributionSS.xml

This file was deleted.

2 changes: 1 addition & 1 deletion builds/install/arch-specific/darwin/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ package_firebird:
$(ROOT)/gen/$(TARGET)/resources/Readme.txt
cp ../builds/install/arch-specific/darwin/License.txt \
$(ROOT)/gen/$(TARGET)/resources/License.txt
cp ../builds/install/arch-specific/darwin/Distribution.xml \
cp ../builds/install/arch-specific/darwin/Distribution-$(CpuType).xml \
$(ROOT)/gen/$(TARGET)/Distribution.xml

rm -fr $(TARGET)/packages
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ if test "x$VCPKG_TRIPLET" != "x" ; then
./vcpkg/bootstrap-vcpkg.sh -disableMetrics
fi

./vcpkg/vcpkg install --triplet=$VCPKG_TRIPLET --debug
./vcpkg/vcpkg install --triplet=$VCPKG_TRIPLET

VCPKG_INSTALLED=`pwd`/vcpkg_installed/$VCPKG_TRIPLET
AC_SUBST(VCPKG_INSTALLED)
Expand Down
Loading