~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to plugin/innodb_memcached/daemon_memcached/win32/config.sh

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
MEMC_VERSION=`git describe | tr '-' '_'`;
 
3
cat > .libs/config_version.h << EOF
 
4
#ifndef CONFIG_VERSION_H
 
5
#define CONFIG_VERSION_H
 
6
 
 
7
/* Define to the full name and version of this package. */
 
8
#define PACKAGE_STRING "memcached $MEMC_VERSION"
 
9
 
 
10
/* Define to the version of this package. */
 
11
#define PACKAGE_VERSION "$MEMC_VERSION"
 
12
 
 
13
/* Version number of package */
 
14
#define VERSION "$MEMC_VERSION"
 
15
 
 
16
#endif // CONFIG_VERSION_H
 
17
EOF