mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 00:14:05 +02:00
add openbsd compatibility patch (thanks, wbx)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5749 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
4ec142cba0
commit
dab6938d57
@ -8,6 +8,13 @@ all: lxdialog
|
||||
CFLAGS := $(shell sh check-lxdialog.sh -ccflags)
|
||||
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
|
||||
|
||||
%.o: %.c
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
#!/usr/bin/env bash
|
||||
# Check ncurses compatibility
|
||||
|
||||
# What library to link
|
||||
|
Loading…
Reference in New Issue
Block a user