mirror of https://github.com/XEphem/XEphem.git
Try adding /opt/homebrew to Makefile
This commit is contained in:
parent
af565b3358
commit
cb7ff5be56
|
|
@ -47,8 +47,6 @@ jobs:
|
||||||
run: brew install openssl && brew info openssl
|
run: brew install openssl && brew info openssl
|
||||||
- name: Install XQuartz
|
- name: Install XQuartz
|
||||||
run: brew install xquartz --cask && brew info xquartz
|
run: brew install xquartz --cask && brew info xquartz
|
||||||
- name: Dump homebrew for debugging paths
|
|
||||||
run: find -L /opt/homebrew
|
|
||||||
- name: Compile
|
- name: Compile
|
||||||
run: make -C GUI/xephem
|
run: make -C GUI/xephem
|
||||||
- name: Test
|
- name: Test
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,12 @@ endif
|
||||||
|
|
||||||
UNAME_S = $(shell uname -s)
|
UNAME_S = $(shell uname -s)
|
||||||
ifeq ($(UNAME_S),Darwin)
|
ifeq ($(UNAME_S),Darwin)
|
||||||
PLATI = -I/usr/local/opt/openssl@3/include -I/opt/X11/include
|
PLATI = -I/opt/homebrew/include \
|
||||||
PLATL = -L/usr/local/opt/openssl@3/lib -L/opt/X11/lib
|
-I/usr/local/opt/openssl@3/include \
|
||||||
|
-I/opt/X11/include
|
||||||
|
PLATL = -L/opt/homebrew/include \
|
||||||
|
-L/usr/local/opt/openssl@3/lib \
|
||||||
|
-L/opt/X11/lib
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CC = gcc
|
CC = gcc
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue