Use a common place to set XBPS_VERSION.

This commit is contained in:
Juan RP 2012-10-03 10:10:20 +02:00
parent 5413a4ec50
commit b13df00ded
4 changed files with 10 additions and 2 deletions

4
configure vendored
View File

@ -1,6 +1,8 @@
#!/bin/sh
# Try and be like autotools configure, but without autotools
VERSION=0.18
# Ensure that we do not inherit these from env
STRLCPY=
STRLCAT=
@ -141,6 +143,7 @@ rm -f $CONFIG_H $CONFIG_MK
echo "# Common vars used by XBPS on $OS." >$CONFIG_MK
echo "/* $OS */" >$CONFIG_H
echo "VERSION = $VERSION" >>$CONFIG_MK
echo "TOPDIR ?= $TOPDIR" >>$CONFIG_MK
echo "PREFIX ?= $PREFIX" >>$CONFIG_MK
echo "EPREFIX ?= $EPREFIX" >>$CONFIG_MK
@ -189,6 +192,7 @@ fi
echo "CPPFLAGS = -I. -I\$(TOPDIR) -I\$(TOPDIR)/include" >>$CONFIG_MK
echo "CPPFLAGS += -DHAVE_CONFIG_H" >>$CONFIG_MK
echo "CPPFLAGS += -DXBPS_SYSCONF_PATH=\\\"${ETCDIR}\\\"" >>$CONFIG_MK
echo "CPPFLAGS += -DXBPS_VERSION=\\\"${VERSION}\\\"" >>$CONFIG_MK
if [ -n "$DEBUG" -a "$DEBUG" != no -a "$DEBUG" != false ]; then
echo "Building with debugging symbols."

View File

@ -1,6 +1,5 @@
-include ../config.mk
VERSION = 0.12
PCFILE = libxbps.pc
.PHONY: all

View File

@ -4,6 +4,7 @@ INCS = xbps_api.h
.PHONY: all
all:
sed -e "s|@@VERSION@@|${VERSION}|g" ${INCS}.in > ${INCS}
.PHONY: install
install:
@ -16,3 +17,4 @@ uninstall:
.PHONY: clean
clean:
-rm -f ${INCS}

View File

@ -57,7 +57,10 @@
#define XBPS_PKGINDEX_VERSION "1.5"
#define XBPS_API_VERSION "20120930"
#define XBPS_VERSION "0.17"
#ifndef XBPS_VERSION
#define XBPS_VERSION "0.17"
#endif
/**
* @def XBPS_RELVER