ossp-pkg/pth/config.param
##
## GNU Pth - The GNU Portable Threads
## Copyright (c) 1999-2007 Ralf S. Engelschall <rse@engelschall.com>
##
## This file is part of GNU Pth, a non-preemptive thread scheduling
## library which can be found at http://www.gnu.org/software/pth/.
##
## This library is free software; you can redistribute it and/or
## modify it under the terms of the GNU Lesser General Public
## License as published by the Free Software Foundation; either
## version 2.1 of the License, or (at your option) any later version.
##
## This library is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## Lesser General Public License for more details.
##
## You should have received a copy of the GNU Lesser General Public
## License along with this library; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
## USA, or contact Ralf S. Engelschall <rse@engelschall.com>.
##
## config.param: predefined configure command line parameters
##
# ``Die Abk. fuer Abk. ist Abk.'' (german)
# Common parameters
common {
}
# build for testing
# (done on all testing platforms)
test {
--prefix=/tmp/pth
--enable-pthread
--enable-optimize
--enable-syscall-soft
}
# build for debugging
# (developer machine only)
install {
CC=/usr/opkg/bin/gcc IF test -f /usr/opkg/bin/gcc
--prefix=/usr/opkg/local/PKG/pth IF test -d /usr/opkg/local/PKG/pth/
--enable-batch
--enable-pthread
--enable-optimize
--enable-syscall-soft
--enable-syscall-hard
--disable-shared
}
# build for developing
# (developer machine only)
# [Hint: dmalloc -l dmalloc.log -i 1 debug1]
devel {
CC=/usr/opkg/bin/gcc IF test -f /usr/opkg/bin/gcc
--prefix=/usr/opkg/local/PKG/pth IF test -d /usr/opkg/local/PKG/pth/
--enable-batch
--enable-debug
--enable-pthread
--enable-maintainer
--enable-syscall-soft
--enable-syscall-hard
--with-dmalloc=/usr/opkg IF test -f /usr/opkg/bin/dmalloc
}