annotate src/freetds.mk @ 6511:8f473adec6db

* src/freetds.mk: update to v1.3.14
author John Donoghue <john.donoghue@ieee.org>
date Tue, 08 Nov 2022 09:38:30 -0500
parents 0b25b70852a0
children 696b42891580
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2153
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 PKG := freetds
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5 $(PKG)_IGNORE :=
6511
8f473adec6db * src/freetds.mk: update to v1.3.14
John Donoghue <john.donoghue@ieee.org>
parents: 6366
diff changeset
6 $(PKG)_VERSION := 1.3.14
8f473adec6db * src/freetds.mk: update to v1.3.14
John Donoghue <john.donoghue@ieee.org>
parents: 6366
diff changeset
7 $(PKG)_CHECKSUM := f73a0d4aebaa540edbcb71a4190fb01e1cdace8d
1812
8858af5863d5 package freetds: update and use hosted known version
Mark Brand <mabrand@mabrand.nl>
parents: 1806
diff changeset
8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
5464
5b31fff74de9 * src/freetds.mk: update to v1.1.42
John Donoghue <john.donoghue@ieee.org>
parents: 5427
diff changeset
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2
2677
4d6ee6781718 Update freedts url
Jeremy Stephens <viking@pillageandplunder.net>
parents: 2525
diff changeset
10 $(PKG)_URL := ftp://ftp.freetds.org/pub/$(PKG)/stable/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3040
diff changeset
11 $(PKG)_DEPS := libiconv gnutls
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
4344
9949d96e2013 freetds: disable threadsafe only in windows build
John D
parents: 4314
diff changeset
13 $(PKG)_CONFIG_OPTS :=
9949d96e2013 freetds: disable threadsafe only in windows build
John D
parents: 4314
diff changeset
14 ifeq ($(MXE_WINDOWS_BUILD),yes)
9949d96e2013 freetds: disable threadsafe only in windows build
John D
parents: 4314
diff changeset
15 $(PKG)_CONFIG_OPTS += --disable-threadsafe
9949d96e2013 freetds: disable threadsafe only in windows build
John D
parents: 4314
diff changeset
16 endif
9949d96e2013 freetds: disable threadsafe only in windows build
John D
parents: 4314
diff changeset
17
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 define $(PKG)_UPDATE
4571
d5eee507aec2 freetds: update to v1.00.80
John D
parents: 4402
diff changeset
19 $(WGET) -q -O- 'ftp://ftp.freetds.org/pub/freetds/stable/' | \
d5eee507aec2 freetds: update to v1.00.80
John D
parents: 4402
diff changeset
20 $(SED) -n 's,.*freetds-\([0-9.]*\)\.tar.*,\1,p' | \
d5eee507aec2 freetds: update to v1.00.80
John D
parents: 4402
diff changeset
21 $(SORT) -V | \
d5eee507aec2 freetds: update to v1.00.80
John D
parents: 4402
diff changeset
22 tail -1
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 endef
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 define $(PKG)_BUILD
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 cd '$(1)' && ./configure \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
27 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
28 --prefix='$(HOST_PREFIX)' \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
29 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
30 --disable-rpath \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
31 --disable-dependency-tracking \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2677
diff changeset
32 $(ENABLE_SHARED_OR_STATIC) \
4344
9949d96e2013 freetds: disable threadsafe only in windows build
John D
parents: 4314
diff changeset
33 $($(PKG)_CONFIG_OPTS) \
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
34 --enable-libiconv \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
35 --enable-msdblib \
1099
be4292f84a3b upgrade package freetds to cvs
Mark Brand <mabrand@mabrand.nl>
parents: 935
diff changeset
36 --enable-sspi \
1684
7f4aeb15a700 package freetds: adjusted configuration
Mark Brand <mabrand@mabrand.nl>
parents: 1128
diff changeset
37 --with-tdsver=7.2 \
1691
b5f32ee6dda0 fix broken gnutls detection in package freetds
Volker Grabsch <vog@notjusthosting.com>
parents: 1684
diff changeset
38 --with-gnutls \
3034
565a86a04c05 Update for native mingw freetds build.
John Donoghue <john.donoghue@ieee.org>
parents: 3022
diff changeset
39 $($(PKG)_CONFIG_OPTS) \
3022
a542328fc284 Update freetds,gnuplot to use MXE_XXXX set tools
John Donoghue <john.donoghue@ieee.org>
parents: 3013
diff changeset
40 PKG_CONFIG='$(MXE_PKG_CONFIG)'
5408
85e6201a83d5 * src/freetds.mk: update to v1.1.39
John Donoghue <john.donoghue@ieee.org>
parents: 5393
diff changeset
41 $(MAKE) -C '$(1)' -j '$(JOBS)' install $(MXE_DISABLE_DOCS) TARGET_DOCDIR='$(1)' DESTDIR='$(3)'
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
42 endef