Skip to content

Commit

Permalink
Merge pull request #50 from flightaware/BCK-6946
Browse files Browse the repository at this point in the history
BCK-6946 BCK-9237: Fix a problem and a potential problem with UTF string conversion.
  • Loading branch information
resuna authored May 13, 2024
2 parents 6f6e346 + 33587e8 commit 6fedc4e
Show file tree
Hide file tree
Showing 4 changed files with 706 additions and 178 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/mac-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,14 @@ jobs:
- name: Install dependencies
run: |
brew update
brew install tcl-tk || true
sudo mkdir -p /usr/local
sudo ln -sf /usr/local/opt/tcl-tk/include /usr/local/include/tcl8.6
sudo rm -f /usr/local/lib/libtcl* || true
sudo cp /usr/local/opt/tcl-tk/lib/libtcl* /usr/local/lib
sudo ln -sf /usr/local/opt/tcl-tk/bin/tclsh8.6 /usr/local/bin/tclsh
sudo ln -sf /usr/local/opt/tcl-tk/bin/tclsh8.6 /usr/local/bin/tclsh8.6
brew install tcl-tk autoconf libpq
- name: configure
run: |
autoreconf -vi
./configure --with-tcl=/usr/local/opt/tcl-tk/lib --prefix=/usr/local
export PG_CONFIG=/opt/homebrew/opt/libpq/bin/pg_config
./configure --with-tcl=/opt/homebrew/opt/tcl-tk/lib/ --prefix=/usr/local
- name: make
run: make
- name: install
run: sudo make install

2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dnl to configure the system for the local environment.
# so you can encode the package version directly into the source files.
#-----------------------------------------------------------------------

AC_INIT([pgtcl], [3.0.1])
AC_INIT([pgtcl], [3.1.0])

#-----
# Version with patch stripped
Expand Down
Loading

0 comments on commit 6fedc4e

Please sign in to comment.