Date: Tue, 24 Jun 2003 04:50:17 -0700 (PDT) From: Toni Andjelkovic <toni@soth.at> To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/53604: Update of devel/pcsc-lite Message-ID: <200306241150.h5OBoHQY037866@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/53604; it has been noted by GNATS. From: Toni Andjelkovic <toni@soth.at> To: Rob <rob@debank.tv> Cc: daichi@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/53604: Update of devel/pcsc-lite Date: Tue, 24 Jun 2003 13:41:41 +0200 > After the port upgrade of devel/pcsc-lite I get an error 2 when > building the package. > > ------snip-------- > source='tokenparser.c' object='tokenparser.lo' libtool=yes \ > depfile='.deps/tokenparser.Plo' tmpdepfile='.deps/tokenparser.TPlo' \ > depmode=gcc /bin/sh ../build/depcomp \ > /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. > -DPACKAGE=\"pcsc-lite\" -DVERSION=\"1.1.2\" -O -pipe -march=pentiumpro > -D_THREAD_SAFE -Wall -fno-common -c -o tokenparser.lo `test -f > 'tokenparser.c' || echo './'`tokenparser.c > rm -f .libs/tokenparser.lo > cc -DHAVE_CONFIG_H -I. -I. -I.. -DPACKAGE=\"pcsc-lite\" > -DVERSION=\"1.1.2\" -O -pipe -march=pentiumpro -D_THREAD_SAFE -Wall > -fno-common -c tokenparser.c -Wp,-MD,.deps/tokenparser.TPlo -fPIC > -DPIC -o .libs/tokenparser.lo > tokenparser.c:23: stdint.h: No such file or directory Hi Rob, this error is because two patch files haven't been commited to CVS. However, I submitted them: > >- Two patches fixing flex-generated code which included <stdint.h> > > unconditionally, causing build failure on older systems (notably > > 4.8-STABLE). Here they are: > >--- /dev/null Sun Jun 22 02:08:40 2003 > >+++ files/patch-src::configfile.c Sun Jun 22 01:38:03 2003 > >@@ -0,0 +1,12 @@ > >+--- src/configfile.c.bak Sun Jun 1 23:43:39 2003 > >++++ src/configfile.c Sun Jun 1 23:43:59 2003 > >+@@ -20,7 +20,9 @@ > >+ #include <string.h> > >+ #include <errno.h> > >+ #include <stdlib.h> > >++#ifdef HAVE_STDINT_H > >+ #include <stdint.h> /* May break IA64 test-noansi-r */ > >++#endif > >+ > >+ /* end standard C headers. */ > >+ > >--- /dev/null Sun Jun 22 02:08:40 2003 > >+++ files/patch-src::tokenparser.c Sun Jun 22 01:38:03 2003 > >@@ -0,0 +1,12 @@ > >+--- src/tokenparser.c.bak Sun Jun 1 23:44:13 2003 > >++++ src/tokenparser.c Sun Jun 1 23:44:31 2003 > >+@@ -20,7 +20,9 @@ > >+ #include <string.h> > >+ #include <errno.h> > >+ #include <stdlib.h> > >++#ifdef HAVE_STDINT_H > >+ #include <stdint.h> /* May break IA64 test-noansi-r */ > >++#endif > >+ > >+ /* end standard C headers. */ > >+ These two files should be committed and the problem will disappear. Cheers, -- Toni Andjelkovic <toni@soth.at>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200306241150.h5OBoHQY037866>