SF.net SVN: gar:[24091] csw/mgar/pkg/abcm2ps/trunk
wahwah at users.sourceforge.net
wahwah at users.sourceforge.net
Sat Sep 13 08:02:17 CEST 2014
Revision: 24091
http://sourceforge.net/p/gar/code/24091
Author: wahwah
Date: 2014-09-13 06:02:16 +0000 (Sat, 13 Sep 2014)
Log Message:
-----------
abcm2ps/trunk: Upgrade to 8.2.2, remove homegrown build files with a command and not a patch
Modified Paths:
--------------
csw/mgar/pkg/abcm2ps/trunk/Makefile
csw/mgar/pkg/abcm2ps/trunk/checksums
Removed Paths:
-------------
csw/mgar/pkg/abcm2ps/trunk/files/0001-Remove-custom-Makefile.patch
csw/mgar/pkg/abcm2ps/trunk/files/0002-Remove-the-custom-Makefile.in-and-config.h.in.patch
csw/mgar/pkg/abcm2ps/trunk/files/0003-Remove-the-custom-config.h.patch
csw/mgar/pkg/abcm2ps/trunk/files/0004-Remove-configure.patch
Modified: csw/mgar/pkg/abcm2ps/trunk/Makefile
===================================================================
--- csw/mgar/pkg/abcm2ps/trunk/Makefile 2014-09-13 05:55:25 UTC (rev 24090)
+++ csw/mgar/pkg/abcm2ps/trunk/Makefile 2014-09-13 06:02:16 UTC (rev 24091)
@@ -1,7 +1,7 @@
# $Id$
NAME = abcm2ps
-VERSION = 8.2.1
+VERSION = 8.2.2
GARTYPE = v2
DESCRIPTION = Convert ABC to music sheet in PostScript or SVG
@@ -25,10 +25,6 @@
#
# --Maciej, 2014-09-12
-PATCHFILES += 0001-Remove-custom-Makefile.patch
-PATCHFILES += 0002-Remove-the-custom-Makefile.in-and-config.h.in.patch
-PATCHFILES += 0003-Remove-the-custom-config.h.patch
-PATCHFILES += 0004-Remove-configure.patch
PATCHFILES += 0005-Add-a-smoke-test.patch
PATCHFILES += 0006-subs.c-includes-config.h-to-get-HAVE_PANGO.patch
PATCHFILES += 0007-Add-Makefile.am-and-configure.ac.patch
@@ -52,5 +48,6 @@
include gar/category.mk
pre-configure:
+ (cd $(WORKSRC); rm -f Makefile Makefile.in configure configure.in config.h)
(cd $(WORKSRC); autoreconf -fi)
@$(MAKECOOKIE)
Modified: csw/mgar/pkg/abcm2ps/trunk/checksums
===================================================================
--- csw/mgar/pkg/abcm2ps/trunk/checksums 2014-09-13 05:55:25 UTC (rev 24090)
+++ csw/mgar/pkg/abcm2ps/trunk/checksums 2014-09-13 06:02:16 UTC (rev 24091)
@@ -1 +1 @@
-160e5d57328b61b95336f360ee7a09f4 abcm2ps-8.2.1.tar.gz
+00483395493d19aef1b5bc61a430cee8 abcm2ps-8.2.2.tar.gz
Deleted: csw/mgar/pkg/abcm2ps/trunk/files/0001-Remove-custom-Makefile.patch
===================================================================
--- csw/mgar/pkg/abcm2ps/trunk/files/0001-Remove-custom-Makefile.patch 2014-09-13 05:55:25 UTC (rev 24090)
+++ csw/mgar/pkg/abcm2ps/trunk/files/0001-Remove-custom-Makefile.patch 2014-09-13 06:02:16 UTC (rev 24091)
@@ -1,167 +0,0 @@
-From 71749412c686ba60930cc47b30514071ae4ae937 Mon Sep 17 00:00:00 2001
-From: Maciej Blizinski <maciej at opencsw.org>
-Date: Fri, 12 Sep 2014 01:49:56 +0200
-Subject: [PATCH 1/8] Remove custom Makefile
-
----
- Makefile | 148 ---------------------------------------------------------------
- 1 file changed, 148 deletions(-)
- delete mode 100644 Makefile
-
-diff --git a/Makefile b/Makefile
-deleted file mode 100644
-index 9ad34d5..0000000
---- a/Makefile
-+++ /dev/null
-@@ -1,148 +0,0 @@
--# Makefile source for abcm2ps
--
--VERSION = 8.2.1
--
--CC = gcc
--INSTALL = /usr/bin/install -c
--INSTALL_DATA = ${INSTALL} -m 644
--INSTALL_PROGRAM = ${INSTALL}
--
--CPPFLAGS = -I.
--CPPPANGO =
--CFLAGS = -g -O2 -Wall -pipe
--LDFLAGS = -lm
--
--prefix = /usr/local
--exec_prefix = ${prefix}
--
--srcdir = .
--VPATH = .
--bindir = ${exec_prefix}/bin
--libdir = ${exec_prefix}/lib
--datadir = ${prefix}/share
--docdir = ${prefix}/doc
--
--# unix
--OBJECTS=abc2ps.o \
-- abcparse.o buffer.o deco.o draw.o format.o front.o glyph.o music.o parse.o \
-- slre.o subs.o svg.o syms.o
--abcm2ps: $(OBJECTS)
-- $(CC) $(CFLAGS) -o $@ $(OBJECTS) $(LDFLAGS)
--
--$(OBJECTS): abcparse.h config.h Makefile
--abc2ps.o buffer.o deco.o draw.o format.o front.o glyph.o music.o parse.o \
-- subs.o svg.o syms.o: abc2ps.h
--abc2ps.o front.o: front.h
--front.o parse.o slre.o: slre.h
--subs.o: subs.c
-- $(CC) $(CFLAGS) $(CPPFLAGS) $(CPPPANGO) -c -o $@ $<
--
--abcmfe: front.c front.h slre.h
-- $(CC) $(CFLAGS) -DMAIN -o $@ $< slre.o
--
--DOCFILES=$(addprefix $(srcdir)/,Changes README *.abc *.eps *.txt)
--
--install: abcm2ps
-- mkdir -p $(bindir); \
-- mkdir -p $(datadir)/abcm2ps; \
-- mkdir -p $(docdir)/abcm2ps; \
-- $(INSTALL_PROGRAM) abcm2ps $(bindir)
-- for f in $(srcdir)/*.fmt; do \
-- $(INSTALL_DATA) $$f $(datadir)/abcm2ps; \
-- done
-- for f in $(DOCFILES); do \
-- $(INSTALL_DATA) $$f $(docdir)/abcm2ps; \
-- done
--
--uninstall:
-- echo "uninstalling..."; \
-- rm -f $(bindir)/abcm2ps; \
-- rm -rf $(datadir)/abcm2ps; \
-- rm -rf $(docdir)/abcm2ps
--
--DIST_FILES = \
-- abcm2ps-$(VERSION)/Changes \
-- abcm2ps-$(VERSION)/INSTALL \
-- abcm2ps-$(VERSION)/Makefile \
-- abcm2ps-$(VERSION)/Makefile.in \
-- abcm2ps-$(VERSION)/README \
-- abcm2ps-$(VERSION)/abc2ps.c \
-- abcm2ps-$(VERSION)/abc2ps.h \
-- abcm2ps-$(VERSION)/abcparse.c \
-- abcm2ps-$(VERSION)/abcparse.h \
-- abcm2ps-$(VERSION)/accordion.abc \
-- abcm2ps-$(VERSION)/build.ninja \
-- abcm2ps-$(VERSION)/buffer.c \
-- abcm2ps-$(VERSION)/chinese.abc \
-- abcm2ps-$(VERSION)/configure \
-- abcm2ps-$(VERSION)/config.h \
-- abcm2ps-$(VERSION)/config.h.in \
-- abcm2ps-$(VERSION)/deco.c \
-- abcm2ps-$(VERSION)/deco.abc \
-- abcm2ps-$(VERSION)/draw.c \
-- abcm2ps-$(VERSION)/features.txt \
-- abcm2ps-$(VERSION)/flute.fmt \
-- abcm2ps-$(VERSION)/format.c \
-- abcm2ps-$(VERSION)/format.txt \
-- abcm2ps-$(VERSION)/front.c \
-- abcm2ps-$(VERSION)/front.h \
-- abcm2ps-$(VERSION)/glyph.c \
-- abcm2ps-$(VERSION)/landscape.fmt \
-- abcm2ps-$(VERSION)/music.c \
-- abcm2ps-$(VERSION)/musicfont.fmt \
-- abcm2ps-$(VERSION)/newfeatures.abc \
-- abcm2ps-$(VERSION)/options.txt \
-- abcm2ps-$(VERSION)/parse.c \
-- abcm2ps-$(VERSION)/sample.abc \
-- abcm2ps-$(VERSION)/sample2.abc \
-- abcm2ps-$(VERSION)/sample3.abc \
-- abcm2ps-$(VERSION)/sample3.eps \
-- abcm2ps-$(VERSION)/sample4.abc \
-- abcm2ps-$(VERSION)/sample5.abc \
-- abcm2ps-$(VERSION)/sample8.html \
-- abcm2ps-$(VERSION)/slre.c \
-- abcm2ps-$(VERSION)/slre.h \
-- abcm2ps-$(VERSION)/subs.c \
-- abcm2ps-$(VERSION)/svg.c \
-- abcm2ps-$(VERSION)/syms.c \
-- abcm2ps-$(VERSION)/voices.abc
--
--dist: Changes
-- ln -s . abcm2ps-$(VERSION); \
-- tar -zcvf abcm2ps-$(VERSION).tar.gz $(DIST_FILES); \
-- rm abcm2ps-$(VERSION)
--
--zip-dist:
-- ln -s . abcm2ps-$(VERSION); \
-- zip -r abcm2ps-$(VERSION).zip $(DIST_FILES); \
-- rm abcm2ps-$(VERSION)
--
--zip: abcm2ps.exe
-- strip abcm2ps.exe; \
-- cd ..; zip -r abcm2ps-$(VERSION).zip \
-- abcm2ps-$(VERSION)/abcm2ps.exe \
-- abcm2ps-$(VERSION)/License \
-- abcm2ps-$(VERSION)/Changes \
-- abcm2ps-$(VERSION)/INSTALL \
-- abcm2ps-$(VERSION)/sample3.eps \
-- abcm2ps-$(VERSION)/*.abc \
-- abcm2ps-$(VERSION)/*.fmt \
-- abcm2ps-$(VERSION)/*.txt ; cd -
--
--EXAMPLES = accordion.ps \
-- chinese.ps \
-- deco.ps \
-- newfeatures.ps \
-- sample.ps \
-- sample2.ps \
-- sample3.ps \
-- sample4.ps \
-- sample5.ps \
-- voices.ps
--
--test: $(EXAMPLES)
--%.ps: %.abc
-- ./abcm2ps -O $@ $<
--
--clean:
-- rm -f *.o $(EXAMPLES) # *.obj
---
-2.0.3
-
Deleted: csw/mgar/pkg/abcm2ps/trunk/files/0002-Remove-the-custom-Makefile.in-and-config.h.in.patch
===================================================================
--- csw/mgar/pkg/abcm2ps/trunk/files/0002-Remove-the-custom-Makefile.in-and-config.h.in.patch 2014-09-13 05:55:25 UTC (rev 24090)
+++ csw/mgar/pkg/abcm2ps/trunk/files/0002-Remove-the-custom-Makefile.in-and-config.h.in.patch 2014-09-13 06:02:16 UTC (rev 24091)
@@ -1,191 +0,0 @@
-From 8e6806ec225a43eb49d0253dc4d14b9685c08a02 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Maciej=20Blizi=C5=84ski?= <maciej.blizinski at gmail.com>
-Date: Wed, 3 Sep 2014 22:32:26 +0100
-Subject: [PATCH 2/8] Remove the custom Makefile.in and config.h.in
-
----
- Makefile.in | 148 ------------------------------------------------------------
- config.h.in | 16 -------
- 2 files changed, 164 deletions(-)
- delete mode 100644 Makefile.in
- delete mode 100644 config.h.in
-
-diff --git a/Makefile.in b/Makefile.in
-deleted file mode 100644
-index d9f01fe..0000000
---- a/Makefile.in
-+++ /dev/null
-@@ -1,148 +0,0 @@
--# Makefile source for abcm2ps
--
--VERSION = @VERSION@
--
--CC = @CC@
--INSTALL = @INSTALL@
--INSTALL_DATA = @INSTALL_DATA@
--INSTALL_PROGRAM = @INSTALL_PROGRAM@
--
--CPPFLAGS = @CPPFLAGS@ -I.
--CPPPANGO = @CPPPANGO@
--CFLAGS = @CFLAGS@
--LDFLAGS = @LDFLAGS@ -lm
--
--prefix = @prefix@
--exec_prefix = @exec_prefix@
--
--srcdir = @srcdir@
--VPATH = @srcdir@
--bindir = @bindir@
--libdir = @libdir@
--datadir = @datarootdir@
--docdir = @docdir@
--
--# unix
--OBJECTS=abc2ps.o \
-- abcparse.o buffer.o deco.o draw.o format.o front.o glyph.o music.o parse.o \
-- slre.o subs.o svg.o syms.o
--abcm2ps: $(OBJECTS)
-- $(CC) $(CFLAGS) -o $@ $(OBJECTS) $(LDFLAGS)
--
--$(OBJECTS): abcparse.h config.h Makefile
--abc2ps.o buffer.o deco.o draw.o format.o front.o glyph.o music.o parse.o \
-- subs.o svg.o syms.o: abc2ps.h
--abc2ps.o front.o: front.h
--front.o parse.o slre.o: slre.h
--subs.o: subs.c
-- $(CC) $(CFLAGS) $(CPPFLAGS) $(CPPPANGO) -c -o $@ $<
--
--abcmfe: front.c front.h slre.h
-- $(CC) $(CFLAGS) -DMAIN -o $@ $< slre.o
--
--DOCFILES=$(addprefix $(srcdir)/,Changes README *.abc *.eps *.txt)
--
--install: abcm2ps
-- mkdir -p $(bindir); \
-- mkdir -p $(datadir)/abcm2ps; \
-- mkdir -p $(docdir)/abcm2ps; \
-- $(INSTALL_PROGRAM) abcm2ps $(bindir)
-- for f in $(srcdir)/*.fmt; do \
-- $(INSTALL_DATA) $$f $(datadir)/abcm2ps; \
-- done
-- for f in $(DOCFILES); do \
-- $(INSTALL_DATA) $$f $(docdir)/abcm2ps; \
-- done
--
--uninstall:
-- echo "uninstalling..."; \
-- rm -f $(bindir)/abcm2ps; \
-- rm -rf $(datadir)/abcm2ps; \
-- rm -rf $(docdir)/abcm2ps
--
--DIST_FILES = \
-- abcm2ps-$(VERSION)/Changes \
-- abcm2ps-$(VERSION)/INSTALL \
-- abcm2ps-$(VERSION)/Makefile \
-- abcm2ps-$(VERSION)/Makefile.in \
-- abcm2ps-$(VERSION)/README \
-- abcm2ps-$(VERSION)/abc2ps.c \
-- abcm2ps-$(VERSION)/abc2ps.h \
-- abcm2ps-$(VERSION)/abcparse.c \
-- abcm2ps-$(VERSION)/abcparse.h \
-- abcm2ps-$(VERSION)/accordion.abc \
-- abcm2ps-$(VERSION)/build.ninja \
-- abcm2ps-$(VERSION)/buffer.c \
-- abcm2ps-$(VERSION)/chinese.abc \
-- abcm2ps-$(VERSION)/configure \
-- abcm2ps-$(VERSION)/config.h \
-- abcm2ps-$(VERSION)/config.h.in \
-- abcm2ps-$(VERSION)/deco.c \
-- abcm2ps-$(VERSION)/deco.abc \
-- abcm2ps-$(VERSION)/draw.c \
-- abcm2ps-$(VERSION)/features.txt \
-- abcm2ps-$(VERSION)/flute.fmt \
-- abcm2ps-$(VERSION)/format.c \
-- abcm2ps-$(VERSION)/format.txt \
-- abcm2ps-$(VERSION)/front.c \
-- abcm2ps-$(VERSION)/front.h \
-- abcm2ps-$(VERSION)/glyph.c \
-- abcm2ps-$(VERSION)/landscape.fmt \
-- abcm2ps-$(VERSION)/music.c \
-- abcm2ps-$(VERSION)/musicfont.fmt \
-- abcm2ps-$(VERSION)/newfeatures.abc \
-- abcm2ps-$(VERSION)/options.txt \
-- abcm2ps-$(VERSION)/parse.c \
-- abcm2ps-$(VERSION)/sample.abc \
-- abcm2ps-$(VERSION)/sample2.abc \
-- abcm2ps-$(VERSION)/sample3.abc \
-- abcm2ps-$(VERSION)/sample3.eps \
-- abcm2ps-$(VERSION)/sample4.abc \
-- abcm2ps-$(VERSION)/sample5.abc \
-- abcm2ps-$(VERSION)/sample8.html \
-- abcm2ps-$(VERSION)/slre.c \
-- abcm2ps-$(VERSION)/slre.h \
-- abcm2ps-$(VERSION)/subs.c \
-- abcm2ps-$(VERSION)/svg.c \
-- abcm2ps-$(VERSION)/syms.c \
-- abcm2ps-$(VERSION)/voices.abc
--
--dist: Changes
-- ln -s . abcm2ps-$(VERSION); \
-- tar -zcvf abcm2ps-$(VERSION).tar.gz $(DIST_FILES); \
-- rm abcm2ps-$(VERSION)
--
--zip-dist:
-- ln -s . abcm2ps-$(VERSION); \
-- zip -r abcm2ps-$(VERSION).zip $(DIST_FILES); \
-- rm abcm2ps-$(VERSION)
--
--zip: abcm2ps.exe
-- strip abcm2ps.exe; \
-- cd ..; zip -r abcm2ps-$(VERSION).zip \
-- abcm2ps-$(VERSION)/abcm2ps.exe \
-- abcm2ps-$(VERSION)/License \
-- abcm2ps-$(VERSION)/Changes \
-- abcm2ps-$(VERSION)/INSTALL \
-- abcm2ps-$(VERSION)/sample3.eps \
-- abcm2ps-$(VERSION)/*.abc \
-- abcm2ps-$(VERSION)/*.fmt \
-- abcm2ps-$(VERSION)/*.txt ; cd -
--
--EXAMPLES = accordion.ps \
-- chinese.ps \
-- deco.ps \
-- newfeatures.ps \
-- sample.ps \
-- sample2.ps \
-- sample3.ps \
-- sample4.ps \
-- sample5.ps \
-- voices.ps
--
--test: $(EXAMPLES)
--%.ps: %.abc
-- ./abcm2ps -O $@ $<
--
--clean:
-- rm -f *.o $(EXAMPLES) # *.obj
-diff --git a/config.h.in b/config.h.in
-deleted file mode 100644
-index 650eee1..0000000
---- a/config.h.in
-+++ /dev/null
-@@ -1,16 +0,0 @@
--/* config.h.in */
--
--/* uncomment to handle the european A4 format. */
--//#define A4_FORMAT 1
--
--/* uncomment to have ~ as roll instead of twiddle. */
--//#define DECO_IS_ROLL 1
--
--/* comment if you have not mmap() */
--#define HAVE_MMAP 1
--
--/* default directory to search for format files */
--#define DEFAULT_FDIR xxx
--
--#define VERSION xxx
--#define VDATE xxx
---
-2.0.3
-
Deleted: csw/mgar/pkg/abcm2ps/trunk/files/0003-Remove-the-custom-config.h.patch
===================================================================
--- csw/mgar/pkg/abcm2ps/trunk/files/0003-Remove-the-custom-config.h.patch 2014-09-13 05:55:25 UTC (rev 24090)
+++ csw/mgar/pkg/abcm2ps/trunk/files/0003-Remove-the-custom-config.h.patch 2014-09-13 06:02:16 UTC (rev 24091)
@@ -1,35 +0,0 @@
-From 11a50a6a7d2a0dca42204611b64e9ca9c0794cf6 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Maciej=20Blizi=C5=84ski?= <maciej.blizinski at gmail.com>
-Date: Wed, 3 Sep 2014 22:32:41 +0100
-Subject: [PATCH 3/8] Remove the custom config.h
-
----
- config.h | 16 ----------------
- 1 file changed, 16 deletions(-)
- delete mode 100644 config.h
-
-diff --git a/config.h b/config.h
-deleted file mode 100644
-index 9c82344..0000000
---- a/config.h
-+++ /dev/null
-@@ -1,16 +0,0 @@
--/* config.h.in */
--
--/* uncomment to handle the european A4 format. */
--//#define A4_FORMAT 1
--
--/* uncomment to have ~ as roll instead of twiddle. */
--//#define DECO_IS_ROLL 1
--
--/* comment if you have not mmap() */
--#define HAVE_MMAP 1
--
--/* default directory to search for format files */
--#define DEFAULT_FDIR "/usr/local/share/abcm2ps"
--
--#define VERSION "8.2.1"
--#define VDATE "September 3, 2014"
---
-2.0.3
-
Deleted: csw/mgar/pkg/abcm2ps/trunk/files/0004-Remove-configure.patch
===================================================================
--- csw/mgar/pkg/abcm2ps/trunk/files/0004-Remove-configure.patch 2014-09-13 05:55:25 UTC (rev 24090)
+++ csw/mgar/pkg/abcm2ps/trunk/files/0004-Remove-configure.patch 2014-09-13 06:02:16 UTC (rev 24091)
@@ -1,94 +0,0 @@
-From 8d373e7d60b5c19571629df9e38f8222d2d80ee3 Mon Sep 17 00:00:00 2001
-From: Maciej Blizinski <maciej at opencsw.org>
-Date: Fri, 12 Sep 2014 02:45:34 +0200
-Subject: [PATCH 4/8] Remove configure
-
----
- configure | 75 ---------------------------------------------------------------
- 1 file changed, 75 deletions(-)
- delete mode 100755 configure
-
-diff --git a/configure b/configure
-deleted file mode 100755
-index adbc44a..0000000
---- a/configure
-+++ /dev/null
-@@ -1,75 +0,0 @@
--#! /bin/sh
--
--### custom variables ###
--
--CC=gcc
--CFLAGS="-g -O2 -Wall -pipe"
--
--INSTALL="/usr/bin/install -c"
--INSTALL_DATA='${INSTALL} -m 644'
--INSTALL_PROGRAM='${INSTALL}'
--
--prefix=/usr/local
--exec_prefix='${prefix}'
--srcdir=.
--bindir='${exec_prefix}/bin'
--libdir='${exec_prefix}/lib'
--datarootdir='${prefix}/share'
--docdir='${prefix}/doc'
--DEFAULT_FDIR="$prefix/share/abcm2ps"
--
--### custom end ###
--
--if test -f ./custom; then
-- . ./custom
--fi
--
--VERSION=8.2.1
--VDATE='September 3, 2014'
--
--case "$1" in
-- --*=*)
-- cmd=${1#--}
-- eval $cmd
-- ;;
--esac
--
--if which pkg-config > /dev/null ; then
-- if pkg-config --exists freetype2 ; then
-- if pkg-config --exists pangocairo ; then
-- CPPFLAGS="-DHAVE_PANGO=1"
-- CPPPANGO="`pkg-config pango cairo freetype2 --cflags`"
-- LDFLAGS="$LDFLAGS `pkg-config pangocairo pangoft2 freetype2 --libs`"
-- else
-- echo "pangocairo not found - no pango support"
-- fi
-- else
-- echo "freetype2 not found - no pango support"
-- fi
--else
-- echo "pkg-config not found - no pango support"
--fi
--
--sed "s+ at CC@+$CC+
--s+ at CPPFLAGS@+$CPPFLAGS+
--s+ at CPPPANGO@+$CPPPANGO+
--s+ at CFLAGS@+$CFLAGS+
--s+ at LDFLAGS@+$LDFLAGS+
--s+ at INSTALL@+$INSTALL+
--s+ at INSTALL_DATA@+$INSTALL_DATA+
--s+ at INSTALL_PROGRAM@+$INSTALL_PROGRAM+
--s+ at prefix@+$prefix+
--s+ at exec_prefix@+$exec_prefix+
--s+ at srcdir@+$srcdir+
--s+ at bindir@+$bindir+
--s+ at libdir@+$libdir+
--s+ at datarootdir@+$datarootdir+
--s+ at docdir@+$docdir+
--s+ at VERSION@+$VERSION+" Makefile.in > Makefile
--echo "Makefile created"
--
--sed "s/define VERSION xxx/\define VERSION \"$VERSION\"/
--s/define VDATE xxx/define VDATE \"$VDATE\"/
--s+define DEFAULT_FDIR xxx+define DEFAULT_FDIR \"$DEFAULT_FDIR\"+
--" config.h.in > config.h
--echo "config.h created"
---
-2.0.3
-
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list