mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-02 03:56:49 +00:00
add openbsd compatibility patch (thanks, wbx)
SVN-Revision: 5749
This commit is contained in:
parent
3310901f9b
commit
c5c7a2e5ab
@ -8,6 +8,13 @@ all: lxdialog
|
|||||||
CFLAGS := $(shell sh check-lxdialog.sh -ccflags)
|
CFLAGS := $(shell sh check-lxdialog.sh -ccflags)
|
||||||
LIBS := $(shell sh check-lxdialog.sh -ldflags gcc)
|
LIBS := $(shell sh check-lxdialog.sh -ldflags gcc)
|
||||||
|
|
||||||
|
# workaround for OpenBSD, which does not use symlinks to libncurses.so
|
||||||
|
OS := $(shell uname -s)
|
||||||
|
ifeq ($(strip $(OS)),OpenBSD)
|
||||||
|
LIBS := -lncurses
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
always := $(hostprogs-y) dochecklxdialog
|
always := $(hostprogs-y) dochecklxdialog
|
||||||
|
|
||||||
%.o: %.c
|
%.o: %.c
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/usr/bin/env bash
|
||||||
# Check ncurses compatibility
|
# Check ncurses compatibility
|
||||||
|
|
||||||
# What library to link
|
# What library to link
|
||||||
|
Loading…
Reference in New Issue
Block a user