Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
k-okada committed Dec 10, 2024
1 parent 8e86010 commit ee29003
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,9 @@ if [ "$TRAVIS_OS_NAME" == "osx" ]; then
export HOMEBREW_CURLRC=1
brew list jpeg &>/dev/null || HOMEBREW_NO_AUTO_UPDATE=1 brew install jpeg
brew list libpng &>/dev/null || HOMEBREW_NO_AUTO_UPDATE=1 brew install libpng
brew list libx11 &>/dev/null || HOMEBREW_NO_AUTO_UPDATE=1 brew install libx11
brew list mesalib-glw &>/dev/null || HOMEBREW_NO_AUTO_UPDATE=1 brew install mesalib-glw
brew list mesa-glu &>/dev/null || HOMEBREW_NO_AUTO_UPDATE=1 brew install mesa-glu
brew list bullet &>/dev/null || HOMEBREW_NO_AUTO_UPDATE=1 brew install bullet
find /opt /usr | grep libGL || echo "OK"
find /opt /usr | grep libX11 || echo "OK"
travis_time_end

fi
Expand Down
2 changes: 2 additions & 0 deletions lisp/xwindow/xforeign.c.c
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,8 @@ char *xentry;
#elif Darwin
eusinteger_t dlhandle;
dlhandle=(eusinteger_t)dlopen("/opt/X11/lib/libX11.dylib", RTLD_LAZY);
if( dlhandle==0 )
dlhandle=(eusinteger_t)dlopen("/usr/local/lib/libX11.dylib", RTLD_LAZY);
if( dlhandle==0 )
dlhandle=(eusinteger_t)dlopen("libX11.dylib", RTLD_LAZY);
entry=(eusinteger_t)dlsym(dlhandle, xentry);
Expand Down

0 comments on commit ee29003

Please sign in to comment.