Skip to content

Commit

Permalink
Link to plain libXaw instead of libXaw3d
Browse files Browse the repository at this point in the history
  • Loading branch information
olebole committed Jan 12, 2024
1 parent 0e80d41 commit a2d183e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install -y build-essential libncurses-dev libxaw7-dev libxmu-dev libxpm-dev xaw3dg-dev tcl-dev iraf-dev xauth xvfb
sudo apt-get install -y build-essential libncurses-dev libxaw7-dev libxmu-dev libxpm-dev tcl-dev iraf-dev xauth xvfb
- name: Setup XQuartz on macOS
if: runner.os == 'macos'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ IRAF installation with its development tools is required.
On Debian and its derivatives (Ubuntu, Mint, Devuan, Raspbian etc.):

$ sudo apt install gcc make bison flex libncurses-dev tcl-dev
$ sudo apt install libxaw7-dev libxmu-dev xaw3dg-dev libxpm-dev
$ sudo apt install libxaw7-dev libxmu-dev libxpm-dev
$ sudo apt install iraf-dev

On MacOS X, you need to have the XCode tools installed. If you
Expand Down
2 changes: 1 addition & 1 deletion obm/listres/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ all: listres
listres: $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) \
-L.. -lobm \
-lXpm -ltcl -lXaw3d -lXmu -lXt -lXext -lX11 -lm
-lXpm -ltcl -lXaw -lXmu -lXt -lXext -lX11 -lm

clean:
rm -f listres $(OBJS)
2 changes: 1 addition & 1 deletion obmsh/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ endif
obmsh: $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) \
-L../obm -lobm \
-lXpm -ltcl -lXaw3d -lXmu -lXt -lXext -lX11 -lncurses -lm
-lXpm -ltcl -lXaw -lXmu -lXt -lXext -lX11 -lncurses -lm

clean:
rm -f obmsh $(OBJS)
2 changes: 1 addition & 1 deletion xgterm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ endif
xgterm: $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) \
-L../obm -lobm \
-lXpm -ltcl -lXaw3d -lXmu -lXt -lXext -lX11 -lncurses -lm
-lXpm -ltcl -lXaw -lXmu -lXt -lXext -lX11 -lncurses -lm

clean:
rm -f xgterm $(OBJS)
2 changes: 1 addition & 1 deletion ximtool/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ximtool.html.h: ximtool.html
ximtool: $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) \
-L../obm -lobm \
-lXpm -ltcl -lXaw3d -lXmu -lXt -lXext -lX11 -lncurses -lm
-lXpm -ltcl -lXaw -lXmu -lXt -lXext -lX11 -lncurses -lm

clients:
cd clients && mkpkg || true
Expand Down
2 changes: 1 addition & 1 deletion xtapemon/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ endif
all: xtapemon

xtapemon: $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) -lXaw3d -lXmu -lXt -lX11 -lm
$(CC) $(LDFLAGS) -o $@ $(OBJS) -lXaw -lXmu -lXt -lX11 -lm

clean:
rm -f xtapemon $(OBJS)

0 comments on commit a2d183e

Please sign in to comment.