Subject: c99
To: None <tech-pkg@netbsd.org>
From: Jan Schaumann <jschauma@netmeister.org>
List: tech-pkg
Date: 12/02/2006 11:11:36
--l76fUT7nc3MelDdI
Content-Type: multipart/mixed; boundary="Q68bSM7Ycu6FN28Q"
Content-Disposition: inline


--Q68bSM7Ycu6FN28Q
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Hi,

I'd like to add "c99" to USE_LANGUAGES as a valid value.  Under some
platforms, you need to specify different flags to a compiler if your
code is using C99 features.  See the attached diff.

Anybody see a problem with this?

-Jan

--=20
http://www.eff.org

--Q68bSM7Ycu6FN28Q
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=diff
Content-Transfer-Encoding: quoted-printable

Index: mk/compiler.mk
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/mk/compiler.mk,v
retrieving revision 1.55
diff -b -u -r1.55 compiler.mk
--- mk/compiler.mk	27 Jul 2006 20:07:06 -0000	1.55
+++ mk/compiler.mk	2 Dec 2006 19:30:41 -0000
@@ -49,8 +49,8 @@
 # USE_LANGUAGES
 #	Lists the languages used in the source code of the package,
 #	and is used to determine the correct compilers to install.
-#	Valid values are: c, c++, fortran, java, objc.  The default
-#	is "c".
+#	Valid values are: c, c99, c++, fortran, java, objc.  The
+#       default is "c".
 #
 # The following variables are defined, and available for testing in
 # package Makefiles:
Index: mk/compiler/gcc.mk
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/mk/compiler/gcc.mk,v
retrieving revision 1.85
diff -b -u -r1.85 gcc.mk
--- mk/compiler/gcc.mk	22 Oct 2006 00:14:17 -0000	1.85
+++ mk/compiler/gcc.mk	2 Dec 2006 19:30:42 -0000
@@ -137,6 +137,10 @@
 _LANGUAGES.gcc+=3D	${LANGUAGES.gcc:M${_lang_}}
 .endfor
=20
+.if !empty(USE_LANGUAGES:Mc99)
+CFLAGS+=3D	-std=3Dc99
+.endif
+
 # GCC has this annoying behaviour where it advocates in a multi-line
 # banner the use of "#include" over "#import" when including headers.
 # This generates a huge number of warnings when building practically all
Index: mk/compiler/mipspro.mk
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/mk/compiler/mipspro.mk,v
retrieving revision 1.35
diff -b -u -r1.35 mipspro.mk
--- mk/compiler/mipspro.mk	22 Oct 2006 00:14:17 -0000	1.35
+++ mk/compiler/mipspro.mk	2 Dec 2006 19:30:42 -0000
@@ -71,6 +71,10 @@
 _LANGUAGES.mipspro+=3D	${LANGUAGES.mipspro:M${_lang_}}
 .endfor
=20
+.if !empty(USE_LANGUAGES:Mc99)
+CFLAGS+=3D	-c99
+.endif
+
 # Prepend the path to the compiler to the PATH.
 .if !empty(_LANGUAGES.mipspro)
 PREPEND_PATH+=3D	${_MIPSPRO_DIR}/bin
Index: converters/libiconv/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/converters/libiconv/Makefile,v
retrieving revision 1.43
diff -b -u -r1.43 Makefile
--- converters/libiconv/Makefile	8 Jun 2006 03:56:21 -0000	1.43
+++ converters/libiconv/Makefile	2 Dec 2006 19:30:42 -0000
@@ -15,6 +15,7 @@
=20
 PKG_INSTALLATION_TYPES=3D	overwrite pkgviews
=20
+USE_LANGUAGES+=3D		c99
 USE_LIBTOOL=3D		yes
 GNU_CONFIGURE=3D		yes
=20
@@ -31,12 +32,6 @@
=20
 MAKE_ENV+=3D		PAX=3D${PAX:Q}
=20
-.include "../../mk/compiler.mk"
-
-.if !empty(PKGSRC_COMPILER:Mmipspro*)
-CFLAGS+=3D	-c99
-.endif
-
 # remove any existing charset.alias; if it already exists, libiconv does
 # not overwrite it, and older versions of libiconv wrote incorrect
 # charset.alias files, which were not removed during deinstall since
Index: databases/shared-mime-info/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/databases/shared-mime-info/Makefile,v
retrieving revision 1.25
diff -b -u -r1.25 Makefile
--- databases/shared-mime-info/Makefile	4 Oct 2006 20:53:46 -0000	1.25
+++ databases/shared-mime-info/Makefile	2 Dec 2006 19:30:42 -0000
@@ -12,6 +12,7 @@
 PKG_INSTALLATION_TYPES=3D	overwrite pkgviews
=20
 GNU_CONFIGURE=3D		YES
+USE_LANGUAGES+=3D		c99
 USE_LIBTOOL=3D		YES
 USE_PKGLOCALEDIR=3D	YES
 USE_TOOLS+=3D		gmake intltool msgfmt pkg-config
@@ -22,12 +23,6 @@
=20
 CPPFLAGS+=3D		-DPREFIX=3D"\"${PREFIX}\""
=20
-.include "../../mk/compiler.mk"
-
-.if !empty(PKGSRC_COMPILER:Mmipspro*)
-CFLAGS+=3D		-c99
-.endif
-
 FILES_SUBST+=3D		MIMEDB_PATH=3D"${PREFIX}/share/mime"
 FILES_SUBST+=3D		UPDATE_MIMEDB=3D"${PREFIX}/bin/update-mime-database"
=20
Index: devel/atk/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/devel/atk/Makefile,v
retrieving revision 1.57
diff -b -u -r1.57 Makefile
--- devel/atk/Makefile	17 Oct 2006 16:51:42 -0000	1.57
+++ devel/atk/Makefile	2 Dec 2006 19:30:42 -0000
@@ -16,6 +16,7 @@
 USE_TOOLS+=3D		gmake pkg-config msgfmt
 GNU_CONFIGURE=3D		yes
 USE_PKGLOCALEDIR=3D	yes
+USE_LANGUAGES+=3D		c99
 USE_LIBTOOL=3D		yes
 PKGCONFIG_OVERRIDE=3D	atk.pc.in
=20
@@ -27,12 +28,6 @@
=20
 BUILDLINK_API_DEPENDS.glib2+=3D	glib2>=3D2.6.3
=20
-.include "../../mk/compiler.mk"
-
-.if !empty(PKGSRC_COMPILER:Mmipspro*)
-CFLAGS+=3D		-c99        =20
-.endif
-
 .include "../../devel/gettext-lib/buildlink3.mk"
 .include "../../devel/glib2/buildlink3.mk"
=20
Index: devel/glib2/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/devel/glib2/Makefile,v
retrieving revision 1.108
diff -b -u -r1.108 Makefile
--- devel/glib2/Makefile	9 Oct 2006 12:52:34 -0000	1.108
+++ devel/glib2/Makefile	2 Dec 2006 19:30:42 -0000
@@ -17,7 +17,7 @@
=20
 USE_PKGLOCALEDIR=3D	yes
 USE_TOOLS+=3D		gmake msgfmt perl:run pkg-config
-USE_LANGUAGES=3D		c c++
+USE_LANGUAGES=3D		c c++ c99
 USE_LIBTOOL=3D		yes
 TEST_TARGET=3D		check
=20
@@ -55,12 +55,6 @@
 CPPFLAGS+=3D		-DPKGLOCALEDIR=3D"\"${PKGLOCALEDIR}\""
 CPPFLAGS+=3D		-DPKG_SYSCONFDIR=3D"\"${PKG_SYSCONFDIR}\""
=20
-.include "../../mk/compiler.mk"
-
-.if !empty(PKGSRC_COMPILER:Mmipspro*)
-CFLAGS+=3D		-c99
-.endif
-
 .if ${OPSYS} =3D=3D "FreeBSD"
=20
 SUBST_CLASSES+=3D		thr
Index: devel/gmp/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/devel/gmp/Makefile,v
retrieving revision 1.40
diff -b -u -r1.40 Makefile
--- devel/gmp/Makefile	22 Oct 2006 19:49:07 -0000	1.40
+++ devel/gmp/Makefile	2 Dec 2006 19:30:42 -0000
@@ -12,7 +12,7 @@
=20
 PKG_INSTALLATION_TYPES=3D	overwrite pkgviews
=20
-USE_LANGUAGES=3D		c c++
+USE_LANGUAGES=3D		c c++ c99
 USE_TOOLS+=3D		gm4
 USE_LIBTOOL=3D		yes
 GNU_CONFIGURE=3D		yes
@@ -26,12 +26,6 @@
 ABI=3D			o32
 .endif
=20
-.include "../../mk/compiler.mk"
-
-.if !empty(PKGSRC_COMPILER:Mmipspro)
-CFLAGS+=3D	-c99
-.endif
-
 .if ${MACHINE_ARCH} =3D=3D "arm" || ${MACHINE_ARCH} =3D=3D "arm32"
 # The configure script thinks gcc 2.95 for ARM is too buggy to use.
 GCC_REQD+=3D		3.0
Index: graphics/ImageMagick/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/graphics/ImageMagick/Makefile,v
retrieving revision 1.145
diff -b -u -r1.145 Makefile
--- graphics/ImageMagick/Makefile	15 Aug 2006 12:20:12 -0000	1.145
+++ graphics/ImageMagick/Makefile	2 Dec 2006 19:30:42 -0000
@@ -12,7 +12,7 @@
=20
 PKG_INSTALLATION_TYPES=3D	overwrite pkgviews
=20
-USE_LANGUAGES=3D		c c++
+USE_LANGUAGES=3D		c c++ c99
 USE_LIBTOOL=3D		yes
 USE_TOOLS+=3D		gmake
 GNU_CONFIGURE=3D		yes
@@ -43,12 +43,6 @@
 # WMF linkage is currently broke, since libMagick would need symbols from =
libWand
 CONFIGURE_ARGS+=3D	--without-wmf
=20
-.include "../../mk/compiler.mk"
-
-.if !empty(PKGSRC_COMPILER:Mmipspro*)
-CFLAGS+=3D		-c99
-.endif
-
 .include "../../archivers/bzip2/buildlink3.mk"
 .include "../../graphics/lcms/buildlink3.mk"
 .include "../../graphics/libexif/buildlink3.mk"
Index: graphics/cairo/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/graphics/cairo/Makefile,v
retrieving revision 1.51
diff -b -u -r1.51 Makefile
--- graphics/cairo/Makefile	9 Nov 2006 20:57:40 -0000	1.51
+++ graphics/cairo/Makefile	2 Dec 2006 19:30:42 -0000
@@ -10,6 +10,7 @@
=20
 PKG_DESTDIR_SUPPORT=3D	user-destdir
=20
+USE_LANGUAGES+=3D		c99
 USE_LIBTOOL=3D		yes
 USE_PKGLOCALEDIR=3D	yes
 USE_TOOLS+=3D		pkg-config
@@ -32,12 +33,6 @@
=20
 BUILDLINK_API_DEPENDS.glitz+=3D	glitz>=3D0.5.1
=20
-.include "../../mk/compiler.mk"
-
-.if !empty(PKGSRC_COMPILER:Mmipspro*)
-CFLAGS+=3D			-c99
-.endif
-
 # For snprintf()
 CPPFLAGS.SunOS+=3D		-D__EXTENSIONS__
=20
Index: graphics/glitz/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/graphics/glitz/Makefile,v
retrieving revision 1.22
diff -b -u -r1.22 Makefile
--- graphics/glitz/Makefile	5 Nov 2006 17:23:44 -0000	1.22
+++ graphics/glitz/Makefile	2 Dec 2006 19:30:42 -0000
@@ -11,6 +11,7 @@
=20
 PKG_DESTDIR_SUPPORT=3D	user-destdir
=20
+USE_LANGUAGES+=3D		c99
 USE_LIBTOOL=3D		yes
 GNU_CONFIGURE=3D		yes
 PKGCONFIG_OVERRIDE=3D	src/agl/glitz-agl.pc.in src/glx/glitz-glx.pc.in \
@@ -23,12 +24,6 @@
 PLIST_SUBST+=3D	AGL=3D"@comment "
 .endif
=20
-.include "../../mk/compiler.mk"
-
-.if !empty(PKGSRC_COMPILER:Mmipspro*)
-CFLAGS+=3D		-c99
-.endif
-
 .include "options.mk"
=20
 .include "../../mk/pthread.buildlink3.mk"
Index: graphics/jasper/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/graphics/jasper/Makefile,v
retrieving revision 1.20
diff -b -u -r1.20 Makefile
--- graphics/jasper/Makefile	5 Feb 2006 23:09:34 -0000	1.20
+++ graphics/jasper/Makefile	2 Dec 2006 19:30:42 -0000
@@ -14,15 +14,10 @@
 PKG_INSTALLATION_TYPES=3D	overwrite pkgviews
=20
 GNU_CONFIGURE=3D		YES
+USE_LANGUAGES+=3D		c99
 USE_LIBTOOL=3D		YES
 CONFIGURE_ARGS+=3D	--enable-shared --without-x --disable-opengl
=20
-.include "../../mk/compiler.mk"
-
-.if !empty(PKGSRC_COMPILER:Mmipspro*)
-CFLAGS+=3D		-c99
-.endif
-
 post-install:
 	${INSTALL_DATA_DIR} ${PREFIX}/share/doc/jasper
 .for doc in jasper jpeg2000
Index: net/tor/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/net/tor/Makefile,v
retrieving revision 1.36
diff -b -u -r1.36 Makefile
--- net/tor/Makefile	8 Nov 2006 19:41:10 -0000	1.36
+++ net/tor/Makefile	2 Dec 2006 19:30:42 -0000
@@ -11,6 +11,7 @@
=20
 .include "../../mk/bsd.prefs.mk"
=20
+USE_LANGUAGES+=3D		c99
 USE_PKGLOCALEDIR=3D	yes
 GNU_CONFIGURE=3D		yes
=20
@@ -37,10 +38,6 @@
=20
 CHECK_PORTABILITY_SKIP+=3Dcontrib/*
=20
-.if !empty(PKGSRC_COMPILER:Mmipspro)
-CFLAGS+=3D		-c99
-.endif
-
 post-patch:
 	${SED} -e 's|@PKG_SYSCONFDIR@|${PKG_SYSCONFDIR}|g'		\
 		-e 's|@PREFIX@|${PREFIX}|g' 				\
Index: print/ghostscript-gnu/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/print/ghostscript-gnu/Makefile,v
retrieving revision 1.15
diff -b -u -r1.15 Makefile
--- print/ghostscript-gnu/Makefile	5 Nov 2006 17:34:44 -0000	1.15
+++ print/ghostscript-gnu/Makefile	2 Dec 2006 19:30:42 -0000
@@ -22,6 +22,7 @@
=20
 DEPENDS+=3D	ghostscript-fonts>=3D6.0:../../fonts/ghostscript-fonts
=20
+USE_LANGUAGES+=3D		c99
 USE_TOOLS+=3D		gmake
 GNU_CONFIGURE=3D		YES
 CONFIGURE_ARGS+=3D	--with-ijs
@@ -76,12 +77,6 @@
=20
 PLIST_SUBST+=3D		GS_VERS=3D${GS_VERS:Q}
=20
-.include "../../mk/compiler.mk"
-
-.if !empty(PKGSRC_COMPILER:Mmipspro*)
-CFLAGS+=3D		-c99
-.endif
-
 post-extract:
 	${MKDIR} ${WRKSRC}/bin
 	${MKDIR} ${WRKSRC}/obj
Index: x11/gtk/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/x11/gtk/Makefile,v
retrieving revision 1.119
diff -b -u -r1.119 Makefile
--- x11/gtk/Makefile	15 Jun 2006 20:40:16 -0000	1.119
+++ x11/gtk/Makefile	2 Dec 2006 19:30:42 -0000
@@ -20,6 +20,7 @@
 USE_X11BASE=3D		yes
 USE_TOOLS+=3D		gmake msgfmt perl
 USE_PKGLOCALEDIR=3D	yes
+USE_LANGUAGES+=3D		c99
 USE_LIBTOOL=3D		yes
 PKGCONFIG_OVERRIDE=3D	gdk.pc.in
 PKGCONFIG_OVERRIDE+=3D	gtk+.pc.in
@@ -44,12 +45,6 @@
 GTK_MINOR_VERSION=3D	${GTK_VERSION:C/[^.]*\.//:C/\..*//}
 GTK_MICRO_VERSION=3D	${GTK_VERSION:C/.*\.//}
=20
-.include "../../mk/compiler.mk"
-
-.if !empty(PKGSRC_COMPILER:Mmipspro*)
-CFLAGS+=3D                -c99
-.endif
-
 # We patch the version info in the configure scripts for reasons related to
 # shared library numbering, but we don't want it to leak into the various
 # installed files.  Explicitly replace the version number with the correct

--Q68bSM7Ycu6FN28Q--

--l76fUT7nc3MelDdI
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (NetBSD)

iD8DBQFFcc/ofFtkr68iakwRAuP6AKDKfKGqByNX7D3JacbSJEYkxUSxtQCghwMS
6k/gEFo5g1MpTSDJJmcwm4o=
=Ik5O
-----END PGP SIGNATURE-----

--l76fUT7nc3MelDdI--