Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
$NetBSD: patch-ad,v 1.2 2010/01/04 15:20:45 joerg Exp $
--- build/config.linux.orig 2006-11-26 22:19:18.000000000 +0000
+++ build/config.linux
@@ -13,7 +13,7 @@ export CXX="g++" #
export LINK=$CXX # Executable Linker
export DLLLINK="$CXX -shared" # Dynamic Library Linker
export LIBLINK="ar cru" # Static Library Linker
-export DLLRPATH="-Wl,-rpath " # Search Path for Dynamic Libs
+export DLLRPATH="-Wl,-rpath," # Search Path for Dynamic Libs
# Compiler and Linker Flags
export OUTPUTOBJ="-o" # Compiler flag to specify output object filename
@@ -23,15 +23,12 @@ export PICFLAG="" #
if [ $DEFS == "-DDEBUG" ] ; then
export CFLAGS="${CFLAGS:--Wall -g -pipe -Wextra}"
export CXXFLAGS="${CXXFLAGS:--Wall -g -pipe -Wextra}"
- export LDFLAGS=""
elif [ $DEFS == "-DNDEBUG" ] ; then
export CFLAGS="${CFLAGS:--Wall -O3 -pipe}"
export CXXFLAGS="${CXXFLAGS:--Wall -O3 -pipe}"
- export LDFLAGS="-s"
else
export CFLAGS="${CFLAGS:--Wall -pipe}"
export CXXFLAGS="${CXXFLAGS:--Wall -pipe}"
- export LDFLAGS=""
fi
export CPPFLAGS="-I./include ${CPPFLAGS}"