annotate src/freetds.mk @ 4359:2c47a4853d1a

freetds: update to 1.00.27 * src/freetds.mk: update version, checksum
author John D
date Mon, 13 Mar 2017 08:13:03 -0400
parents 9949d96e2013
children 3e024d024711
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 :=
4359
2c47a4853d1a freetds: update to 1.00.27
John D
parents: 4344
diff changeset
6 $(PKG)_VERSION := 1.00.27
2c47a4853d1a freetds: update to 1.00.27
John D
parents: 4344
diff changeset
7 $(PKG)_CHECKSUM := 81c6e8566ef7d366d67b874917da41fc1dba2145
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)
1949
3a6fb6eca547 update package freetds
Mark Brand <mabrand@mabrand.nl>
parents: 1945
diff changeset
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
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
1830
867b6165f31d improved wording in warning messages
Volker Grabsch <vog@notjusthosting.com>
parents: 1821
diff changeset
19 echo 'Warning: Updates are temporarily disabled for package freetds.' >&2;
1821
303627a5a2de disable update for package freetds, until their release candidate gets stable reference
Volker Grabsch <vog@notjusthosting.com>
parents: 1819
diff changeset
20 echo $(freetds_VERSION)
303627a5a2de disable update for package freetds, until their release candidate gets stable reference
Volker Grabsch <vog@notjusthosting.com>
parents: 1819
diff changeset
21 endef
303627a5a2de disable update for package freetds, until their release candidate gets stable reference
Volker Grabsch <vog@notjusthosting.com>
parents: 1819
diff changeset
22 define $(PKG)_UPDATE_orig
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2365
diff changeset
23 $(WGET) -q -O- 'http://freetds.cvs.sourceforge.net/viewvc/freetds/freetds/' | \
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 grep '<option>R' | \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 $(SED) -n 's,.*R\([0-9][0-9_]*\)<.*,\1,p' | \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 $(SED) 's,_,.,g' | \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 head -1
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
28 endef
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
29
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
30 define $(PKG)_BUILD
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
31 cd '$(1)' && ./configure \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
32 $(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
33 --prefix='$(HOST_PREFIX)' \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
34 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
35 --disable-rpath \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
36 --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
37 $(ENABLE_SHARED_OR_STATIC) \
4344
9949d96e2013 freetds: disable threadsafe only in windows build
John D
parents: 4314
diff changeset
38 $($(PKG)_CONFIG_OPTS) \
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
39 --enable-libiconv \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
40 --enable-msdblib \
1099
be4292f84a3b upgrade package freetds to cvs
Mark Brand <mabrand@mabrand.nl>
parents: 935
diff changeset
41 --enable-sspi \
1684
7f4aeb15a700 package freetds: adjusted configuration
Mark Brand <mabrand@mabrand.nl>
parents: 1128
diff changeset
42 --with-tdsver=7.2 \
1691
b5f32ee6dda0 fix broken gnutls detection in package freetds
Volker Grabsch <vog@notjusthosting.com>
parents: 1684
diff changeset
43 --with-gnutls \
3034
565a86a04c05 Update for native mingw freetds build.
John Donoghue <john.donoghue@ieee.org>
parents: 3022
diff changeset
44 $($(PKG)_CONFIG_OPTS) \
3022
a542328fc284 Update freetds,gnuplot to use MXE_XXXX set tools
John Donoghue <john.donoghue@ieee.org>
parents: 3013
diff changeset
45 PKG_CONFIG='$(MXE_PKG_CONFIG)'
1128
001b869cef5e another bugfix for package freetds (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents: 1126
diff changeset
46 $(MAKE) -C '$(1)' -j '$(JOBS)' install man_MANS=
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
47 endef