blob: ad73e2b9ce7bd051222f67c626d631eb9b0a9a0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := freetds
$(PKG)_WEBSITE := http://www.freetds.org/
$(PKG)_DESCR := FreeTDS
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.00.110
$(PKG)_CHECKSUM := 82ef803141f1620cb490f5a313dca8e6828f393c7e253b977664f01913dbafff
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2
$(PKG)_URL := ftp://ftp.freetds.org/pub/$(PKG)/stable/$($(PKG)_FILE)
$(PKG)_URL_2 := https://fossies.org/linux/privat/$($(PKG)_FILE)
$(PKG)_DEPS := cc openssl libiconv
define $(PKG)_UPDATE
$(WGET) -q -O- 'ftp://ftp.freetds.org/pub/freetds/stable/' | \
$(SED) -n 's,.*freetds-\([0-9.]*\)\.tar.*,\1,p' | \
$(SORT) -V | \
tail -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS) \
--disable-rpath \
--disable-dependency-tracking \
--enable-libiconv \
--enable-msdblib \
--enable-sspi \
--disable-threadsafe \
--with-tdsver=7.2 \
--with-openssl \
PKG_CONFIG='$(TARGET)-pkg-config' \
CFLAGS=-D_WIN32_WINNT=0x0600
$(MAKE) -C '$(1)' -j '$(JOBS)' install man_MANS=
endef
|